2015-06-27 04:06:17 +08:00
|
|
|
FROM golang:1.4
|
|
|
|
|
|
|
|
RUN echo "deb http://ftp.us.debian.org/debian testing main contrib" >> /etc/apt/sources.list
|
2015-06-30 02:12:54 +08:00
|
|
|
RUN apt-get update && apt-get install -y iptables criu=1.6-2 git build-essential autoconf libtool && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
# Need Libseccomp v2.2.1 minimum, but grab the latest version of the v2.2 releases
|
|
|
|
RUN git clone -b v2.2.3 --depth 1 https://github.com/seccomp/libseccomp /libseccomp
|
|
|
|
RUN cd /libseccomp && ./autogen.sh && ./configure && make && make check && make install
|
|
|
|
# Fix linking error
|
|
|
|
RUN cp /usr/local/lib/libseccomp.so /usr/lib/libseccomp.so.2
|
2015-06-27 04:06:17 +08:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2015-07-31 04:20:10 +08:00
|
|
|
COPY script/tmpmount /
|
2015-06-27 04:06:17 +08:00
|
|
|
WORKDIR /go/src/github.com/opencontainers/runc
|
2015-07-31 04:20:10 +08:00
|
|
|
ENTRYPOINT ["/tmpmount"]
|