update go version to 1.5.3 in dockerfile and cleanup

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2016-01-15 10:56:34 -08:00
parent 6259f09e97
commit 5f89a91559
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
1 changed files with 17 additions and 17 deletions

View File

@ -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 echo "deb http://ftp.us.debian.org/debian testing main contrib" >> /etc/apt/sources.list
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
curl \ build-essential \
build-essential \ curl \
libaio-dev \ iptables \
libcap-dev \ libaio-dev \
libprotobuf-dev \ libcap-dev \
libprotobuf-c0-dev \ libprotobuf-dev \
protobuf-c-compiler \ libprotobuf-c0-dev \
protobuf-compiler \ libseccomp2 \
python-minimal \ libseccomp-dev \
iptables \ protobuf-c-compiler \
libseccomp2 \ protobuf-compiler \
libseccomp-dev \ python-minimal \
--no-install-recommends --no-install-recommends
# install criu # install criu
ENV CRIU_VERSION 1.7 ENV CRIU_VERSION 1.7
RUN mkdir -p /usr/src/criu \ 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 \ && 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 \ && cd /usr/src/criu \
&& make install-criu && make install-criu
# setup a playground for us to spawn containers in # setup a playground for us to spawn containers in
RUN mkdir /busybox && \ RUN mkdir /busybox && \