Merge pull request #291 from runcom/test-dockerfile-criu-source

script: test_Dockerfile: install criu from source
This commit is contained in:
Mrunal Patel 2015-09-22 15:12:10 -07:00
commit ff122b864a
1 changed files with 21 additions and 1 deletions

View File

@ -1,7 +1,27 @@
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/testing libseccomp2 libseccomp-dev && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y \
curl \
build-essential \
libaio-dev \
libcap-dev \
libprotobuf-dev \
libprotobuf-c0-dev \
protobuf-c-compiler \
protobuf-compiler \
python-minimal \
iptables \
libseccomp2 \
libseccomp-dev \
--no-install-recommends
# 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
RUN mkdir /busybox && \