update_to_go_1.5.3

Signed-off-by: Victor Vieux <vieux@docker.com>
This commit is contained in:
Victor Vieux 2016-01-27 03:13:47 -08:00
parent d1ba0fdf87
commit 80ffd860cb
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM golang:1.5.2
FROM golang:1.5.3
COPY . /go/src/github.com/docker/swarm
WORKDIR /go/src/github.com/docker/swarm

View File

@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends git file parall
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Install golang
ENV GO_VERSION 1.5.2
ENV GO_VERSION 1.5.3
RUN curl -sSL https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz | tar -v -C /usr/local -xz
ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go