From 80ffd860cb0bbdd92c916e7e276adbbdbf35d3f1 Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Wed, 27 Jan 2016 03:13:47 -0800 Subject: [PATCH] update_to_go_1.5.3 Signed-off-by: Victor Vieux --- Dockerfile | 2 +- test/integration/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3be0cb98e2..da37763061 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/test/integration/Dockerfile b/test/integration/Dockerfile index 0a8b4acdfd..cb8f70b028 100644 --- a/test/integration/Dockerfile +++ b/test/integration/Dockerfile @@ -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