mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
59264040bd
As v2.1.0 is no longer required for successful testing, do not build it in the Dockerfile - instead just use the version Ubuntu ships. Signed-off-by: Matthew Heon <mheon@redhat.com>
13 lines
512 B
Plaintext
13 lines
512 B
Plaintext
FROM golang:1.4
|
|
|
|
RUN echo "deb http://ftp.us.debian.org/debian testing main contrib" >> /etc/apt/sources.list
|
|
RUN apt-get update && apt-get install -y iptables criu=1.6-2 libseccomp2 libseccomp-dev && rm -rf /var/lib/apt/lists/*
|
|
|
|
# setup a playground for us to spawn containers in
|
|
RUN mkdir /busybox && \
|
|
curl -sSL 'https://github.com/jpetazzo/docker-busybox/raw/buildroot-2014.11/rootfs.tar' | tar -xC /busybox
|
|
|
|
COPY script/tmpmount /
|
|
WORKDIR /go/src/github.com/opencontainers/runc
|
|
ENTRYPOINT ["/tmpmount"]
|