From 5f89a915595dcedc7c152241afb179440ed7fb6f Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Fri, 15 Jan 2016 10:56:34 -0800 Subject: [PATCH] update go version to 1.5.3 in dockerfile and cleanup Signed-off-by: Jessica Frazelle --- script/test_Dockerfile | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/script/test_Dockerfile b/script/test_Dockerfile index 0d5f056a..2fe73586 100644 --- a/script/test_Dockerfile +++ b/script/test_Dockerfile @@ -1,27 +1,27 @@ -FROM golang:1.4 +FROM golang:1.5.3 RUN echo "deb http://ftp.us.debian.org/debian testing main contrib" >> /etc/apt/sources.list 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 + build-essential \ + curl \ + iptables \ + libaio-dev \ + libcap-dev \ + libprotobuf-dev \ + libprotobuf-c0-dev \ + libseccomp2 \ + libseccomp-dev \ + protobuf-c-compiler \ + protobuf-compiler \ + python-minimal \ + --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 + && 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 && \