2017-08-30 10:13:25 +02:00
|
|
|
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 git clone https://github.com/JakubGrajciar/libmemif.git /libmemif
|
|
|
|
WORKDIR /libmemif
|
2017-09-18 11:21:40 +02:00
|
|
|
RUN git checkout master
|
2017-08-30 10:13:25 +02:00
|
|
|
RUN ./bootstrap
|
|
|
|
RUN ./configure
|
|
|
|
RUN make
|
|
|
|
RUN make install
|
|
|
|
|
|
|
|
RUN mkdir /var/vpp
|
|
|
|
|
|
|
|
RUN ulimit -c unlimited
|
|
|
|
|
|
|
|
CMD ./.libs/icmpr-epoll
|