docker: version bump Go 1.2 -> 1.3.1

We now require 1.3, update the docker build to match.

Change-Id: Iaa9b864d5940509c888db45ae17b6dbd21d1ddb7
This commit is contained in:
Bill Thiede 2014-08-14 20:45:58 -07:00
parent 17bd3ab026
commit e3cdaf4f27
1 changed files with 1 additions and 1 deletions

View File

@ -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