File tree Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change 1- FROM golang:1.4
1+ FROM golang:1.5.3
22
33RUN echo "deb http://ftp.us.debian.org/debian testing main contrib" >> /etc/apt/sources.list
44RUN apt-get update && apt-get install -y \
5- curl \
6- build-essential \
7- libaio-dev \
8- libcap -dev \
9- libprotobuf -dev \
10- libprotobuf-c0 -dev \
11- protobuf-c-compiler \
12- protobuf-compiler \
13- python-minimal \
14- iptables \
15- libseccomp2 \
16- libseccomp-dev \
17- --no-install-recommends
5+ build-essential \
6+ curl \
7+ iptables \
8+ libaio -dev \
9+ libcap -dev \
10+ libprotobuf-dev \
11+ libprotobuf-c0-dev \
12+ libseccomp2 \
13+ libseccomp-dev \
14+ protobuf-c-compiler \
15+ protobuf-compiler \
16+ python-minimal \
17+ --no-install-recommends
1818
1919# install criu
2020ENV CRIU_VERSION 1.7
2121RUN mkdir -p /usr/src/criu \
22- && curl -sSL https://github.com/xemul/criu/archive/v${CRIU_VERSION}.tar.gz | tar -v -C /usr/src/criu/ -xz --strip-components=1 \
23- && cd /usr/src/criu \
24- && make install-criu
22+ && curl -sSL https://github.com/xemul/criu/archive/v${CRIU_VERSION}.tar.gz | tar -v -C /usr/src/criu/ -xz --strip-components=1 \
23+ && cd /usr/src/criu \
24+ && make install-criu
2525
2626# setup a playground for us to spawn containers in
2727RUN mkdir /busybox && \
You can’t perform that action at this time.
0 commit comments