2016-09-19 17:45:33 +08:00
|
|
|
FROM golang:1.7.1
|
2016-08-30 09:46:47 +08:00
|
|
|
|
|
|
|
# libseccomp in jessie is not _quite_ new enough -- need backports version
|
|
|
|
RUN echo 'deb http://httpredir.debian.org/debian jessie-backports main' > /etc/apt/sources.list.d/backports.list
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
build-essential \
|
|
|
|
curl \
|
|
|
|
gawk \
|
|
|
|
iptables \
|
2016-10-25 15:00:51 +08:00
|
|
|
jq \
|
2016-08-30 09:46:47 +08:00
|
|
|
pkg-config \
|
|
|
|
libaio-dev \
|
|
|
|
libcap-dev \
|
|
|
|
libprotobuf-dev \
|
|
|
|
libprotobuf-c0-dev \
|
|
|
|
libseccomp2/jessie-backports \
|
|
|
|
libseccomp-dev/jessie-backports \
|
|
|
|
protobuf-c-compiler \
|
|
|
|
protobuf-compiler \
|
|
|
|
python-minimal \
|
|
|
|
--no-install-recommends
|
|
|
|
|
|
|
|
# install bats
|
|
|
|
RUN cd /tmp \
|
|
|
|
&& git clone https://github.com/sstephenson/bats.git \
|
|
|
|
&& cd bats \
|
|
|
|
&& git reset --hard 03608115df2071fff4eaaff1605768c275e5f81f \
|
2016-10-09 09:43:22 +08:00
|
|
|
&& ./install.sh /usr/local \
|
|
|
|
&& rm -rf /tmp/bats
|
2016-08-30 09:46:47 +08:00
|
|
|
|
|
|
|
# install criu
|
|
|
|
ENV CRIU_VERSION 1.7
|
|
|
|
RUN mkdir -p /usr/src/criu \
|
|
|
|
&& curl -sSL https://github.com/xemul/criu/archive/v${CRIU_VERSION}.tar.gz | tar -v -C /usr/src/criu/ -xz --strip-components=1 \
|
|
|
|
&& cd /usr/src/criu \
|
|
|
|
&& make install-criu
|
|
|
|
|
|
|
|
# setup a playground for us to spawn containers in
|
|
|
|
ENV ROOTFS /busybox
|
|
|
|
RUN mkdir -p ${ROOTFS} \
|
|
|
|
&& curl -o- -sSL 'https://github.com/jpetazzo/docker-busybox/raw/buildroot-2014.11/rootfs.tar' | tar -C ${ROOTFS} -xf -
|
|
|
|
|
|
|
|
COPY script/tmpmount /
|
|
|
|
WORKDIR /go/src/github.com/opencontainers/runc
|
|
|
|
ENTRYPOINT ["/tmpmount"]
|
|
|
|
|
2015-12-18 19:18:41 +08:00
|
|
|
ADD . /go/src/github.com/opencontainers/runc
|