From 4a26a657994881caeefbffe6b62d45fed5c9284f Mon Sep 17 00:00:00 2001 From: Ken Cochrane Date: Thu, 21 Apr 2016 09:22:26 -0400 Subject: [PATCH] Bump Go version to 1.6.2 from 1.6.1 where it was used Signed-off-by: Ken Cochrane (cherry picked from commit 09ca4dd32232cdbbe04628e5647922002d9df175) --- Dockerfile.ppc64le | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Dockerfile.ppc64le b/Dockerfile.ppc64le index 2b7411e799..a78684cc45 100644 --- a/Dockerfile.ppc64le +++ b/Dockerfile.ppc64le @@ -71,13 +71,11 @@ RUN cd /usr/local/lvm2 \ && make install_device-mapper # see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL -# TODO install Go, using gccgo as GOROOT_BOOTSTRAP (Go 1.5+ supports ppc64le properly) -# possibly a ppc64le/golang image? - -## BUILD GOLANG -ENV GO_VERSION 1.5.4 +## BUILD GOLANG 1.6 +# NOTE: ppc64le has compatibility issues with older versions of go, so make sure the version >= 1.6 +ENV GO_VERSION 1.6.2 ENV GO_DOWNLOAD_URL https://golang.org/dl/go${GO_VERSION}.src.tar.gz -ENV GO_DOWNLOAD_SHA256 002acabce7ddc140d0d55891f9d4fcfbdd806b9332fb8b110c91bc91afb0bc93 +ENV GO_DOWNLOAD_SHA256 787b0b750d037016a30c6ed05a8a70a91b2e9db4bd9b1a2453aa502a63f1bccc ENV GOROOT_BOOTSTRAP /usr/local RUN curl -fsSL "$GO_DOWNLOAD_URL" -o golang.tar.gz \