From d3b8ceb52cad0c1b16c8e04eb70da4835f81add4 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 4 Apr 2018 13:54:37 -0700 Subject: [PATCH] Bump Golang to 1.9.5 go1.9.5 (released 2018/03/28) includes fixes to the compiler, go command, and net/http/pprof package. See the Go 1.9.5 milestone on the issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.9.5 Signed-off-by: Sebastiaan van Stijn --- dockerfiles/Dockerfile.binary-native | 2 +- dockerfiles/Dockerfile.cross | 2 +- dockerfiles/Dockerfile.dev | 2 +- dockerfiles/Dockerfile.lint | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/Dockerfile.binary-native b/dockerfiles/Dockerfile.binary-native index c14fc47120..151aea1ac3 100644 --- a/dockerfiles/Dockerfile.binary-native +++ b/dockerfiles/Dockerfile.binary-native @@ -1,4 +1,4 @@ -FROM golang:1.9.4-alpine3.6 +FROM golang:1.9.5-alpine3.6 RUN apk add -U git bash coreutils gcc musl-dev diff --git a/dockerfiles/Dockerfile.cross b/dockerfiles/Dockerfile.cross index 44e819908e..d639c2de7f 100644 --- a/dockerfiles/Dockerfile.cross +++ b/dockerfiles/Dockerfile.cross @@ -1,3 +1,3 @@ -FROM dockercore/golang-cross:1.9.4@sha256:b8d43ef11ccaa15bec63a1f1fd0c28a0e729074aa62fcfa51f0a5888f3571315 +FROM dockercore/golang-cross:1.9.5@sha256:4d090b8c2e6d369a48254c882a4e653ba90caaa0b758105da772d9110394d958 ENV DISABLE_WARN_OUTSIDE_CONTAINER=1 WORKDIR /go/src/github.com/docker/cli diff --git a/dockerfiles/Dockerfile.dev b/dockerfiles/Dockerfile.dev index 2cb9862fcd..dde0027d82 100644 --- a/dockerfiles/Dockerfile.dev +++ b/dockerfiles/Dockerfile.dev @@ -1,5 +1,5 @@ -FROM golang:1.9.4-alpine3.6 +FROM golang:1.9.5-alpine3.6 RUN apk add -U git make bash coreutils ca-certificates curl diff --git a/dockerfiles/Dockerfile.lint b/dockerfiles/Dockerfile.lint index d7d5138ee8..f4c2fe106c 100644 --- a/dockerfiles/Dockerfile.lint +++ b/dockerfiles/Dockerfile.lint @@ -1,4 +1,4 @@ -FROM golang:1.9.4-alpine3.6 +FROM golang:1.9.5-alpine3.6 RUN apk add -U git