1.5.1->1.5.2

Signed-off-by: Victor Vieux <vieux@docker.com>
This commit is contained in:
Victor Vieux 2015-12-07 21:45:34 -08:00
parent a4a1d3bd01
commit 9677ddd06f
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
language: go
go:
- 1.5.1
- 1.5.2
# let us have speedy Docker-based Travis workers
sudo: false

View File

@ -1,4 +1,4 @@
FROM golang:1.5.1
FROM golang:1.5.2
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.1
ENV GO_VERSION 1.5.2
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