Skip to content

Commit 5f89a91

Browse files
committed
update go version to 1.5.3 in dockerfile and cleanup
Signed-off-by: Jessica Frazelle <[email protected]>
1 parent 6259f09 commit 5f89a91

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

script/test_Dockerfile

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
FROM golang:1.4
1+
FROM golang:1.5.3
22

33
RUN echo "deb http://ftp.us.debian.org/debian testing main contrib" >> /etc/apt/sources.list
44
RUN 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
2020
ENV CRIU_VERSION 1.7
2121
RUN 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
2727
RUN mkdir /busybox && \

0 commit comments

Comments
 (0)