blob: 81012b0d5fd8f3ce0fa78f00f43501b2caee42c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
FROM ubuntu:xenial
RUN apt-get update && \
apt-get install -y git build-essential autoconf pkg-config libtool sudo check
RUN rm -rf /var/lib/apt/lists/*
RUN mkdir /libmemif
ADD . /libmemif
WORKDIR /libmemif
RUN ./bootstrap
RUN ./configure
RUN make
RUN make install
RUN mkdir /run/vpp
RUN ulimit -c unlimited
CMD ./.libs/icmpr-epoll
|