From e3cdaf4f2707c8ba51d059be90bdab017d19af0d Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Thu, 14 Aug 2014 20:45:58 -0700 Subject: [PATCH] docker: version bump Go 1.2 -> 1.3.1 We now require 1.3, update the docker build to match. Change-Id: Iaa9b864d5940509c888db45ae17b6dbd21d1ddb7 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f837d31a8..8030066a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && apt-get upgrade -y RUN apt-get install -y curl make git -RUN curl -o /tmp/go.tar.gz https://go.googlecode.com/files/go1.2.linux-amd64.tar.gz +RUN curl -o /tmp/go.tar.gz https://storage.googleapis.com/golang/go1.3.1.linux-amd64.tar.gz RUN tar -C /usr/local -zxvf /tmp/go.tar.gz RUN rm /tmp/go.tar.gz RUN /usr/local/go/bin/go version