From 8043f26651fe99bda4f6add691c91a82ea74debe Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Thu, 15 Feb 2018 15:08:12 -0500 Subject: [PATCH] [contrib] bump golang Use golang:1.9, which should get the latest 1.9.x version, instead of using a specific tag. Signed-off-by: Christopher Jones --- contrib/Dockerfile.test | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/Dockerfile.test b/contrib/Dockerfile.test index e8e2fe1f7..079d35f9d 100644 --- a/contrib/Dockerfile.test +++ b/contrib/Dockerfile.test @@ -7,19 +7,19 @@ # # Install proto3 -FROM golang:1.9.3 AS proto3 +FROM golang:1.9 AS proto3 RUN apt-get update && apt-get install -y autoconf automake g++ libtool unzip COPY script/setup/install-protobuf install-protobuf RUN ./install-protobuf # Install runc -FROM golang:1.9.3 AS runc +FROM golang:1.9 AS runc RUN apt-get update && apt-get install -y curl libapparmor-dev libseccomp-dev COPY vendor.conf /go/src/github.com/containerd/containerd/vendor.conf COPY script/setup/install-runc install-runc RUN ./install-runc -FROM golang:1.9.3 +FROM golang:1.9 RUN apt-get update && apt-get install -y btrfs-tools gcc git libapparmor-dev libseccomp-dev make xfsprogs COPY --from=proto3 /usr/local/bin/protoc /usr/local/bin/protoc