61 lines
1.7 KiB
Docker
61 lines
1.7 KiB
Docker
FROM golang:1.7.1
|
|
|
|
# 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 \
|
|
jq \
|
|
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 \
|
|
&& apt-get clean
|
|
|
|
# install bats
|
|
RUN cd /tmp \
|
|
&& git clone https://github.com/sstephenson/bats.git \
|
|
&& cd bats \
|
|
&& git reset --hard 03608115df2071fff4eaaff1605768c275e5f81f \
|
|
&& ./install.sh /usr/local \
|
|
&& rm -rf /tmp/bats
|
|
|
|
# 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 \
|
|
&& rm -rf /usr/src/criu
|
|
|
|
# install shfmt
|
|
RUN mkdir -p /go/src/github.com/mvdan \
|
|
&& cd /go/src/github.com/mvdan \
|
|
&& git clone https://github.com/mvdan/sh \
|
|
&& cd sh \
|
|
&& git checkout -f v0.4.0 \
|
|
&& go install ./cmd/shfmt \
|
|
&& rm -rf /go/src/github.com/mvdan
|
|
|
|
# setup a playground for us to spawn containers in
|
|
ENV ROOTFS /busybox
|
|
RUN mkdir -p ${ROOTFS} \
|
|
&& curl -o- -sSL 'https://github.com/docker-library/busybox/raw/a0558a9006ce0dd6f6ec5d56cfd3f32ebeeb815f/glibc/busybox.tar.xz' | tar xfJC - ${ROOTFS}
|
|
|
|
|
|
COPY script/tmpmount /
|
|
WORKDIR /go/src/github.com/opencontainers/runc
|
|
ENTRYPOINT ["/tmpmount"]
|
|
|
|
ADD . /go/src/github.com/opencontainers/runc
|