Codebase list slirp4netns / debian/0.1_git20181119.5e4789b-1 Dockerfile.tests
debian/0.1_git20181119.5e4789b-1

Tree @debian/0.1_git20181119.5e4789b-1 (Download .tar.gz)

Dockerfile.tests @debian/0.1_git20181119.5e4789b-1raw · history · blame

FROM ubuntu AS build
RUN apt update && apt install -y automake autotools-dev make gcc
COPY . /slirp4netns
WORKDIR /slirp4netns
RUN chown -R 1000:1000 /slirp4netns
USER 1000:1000
RUN ./autogen.sh && ./configure && make -j $(nproc)

FROM build AS test
USER 0
RUN apt update && apt install -y git indent libtool iproute2 clang clang-tidy iputils-ping iperf3
USER 1000:1000
CMD ["make", "ci"]