From 6a014a0d33e1618642403b47ead8017626d07fe2 Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Mon, 26 Sep 2016 12:03:38 -0400 Subject: [PATCH] ppc64le: update dockerfile golang dl link updates golang download link to be consistent with other dockerfiles Signed-off-by: Christopher Jones --- Dockerfile.ppc64le | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.ppc64le b/Dockerfile.ppc64le index 4efdb48c59..1aaba74d1b 100644 --- a/Dockerfile.ppc64le +++ b/Dockerfile.ppc64le @@ -93,7 +93,7 @@ RUN set -x \ # to build go from source. # NOTE: ppc64le has compatibility issues with older versions of go, so make sure the version >= 1.6 ENV GO_VERSION 1.7.1 -ENV GO_DOWNLOAD_URL https://golang.org/dl/go${GO_VERSION}.src.tar.gz +ENV GO_DOWNLOAD_URL https://storage.googleapis.com/golang/go${GO_VERSION}.src.tar.gz RUN set -x \ && TEMPDIR="$(mktemp -d)" \