Browse code

ppc64le: remove go SHA check

Makes it consistent with other Dockerfiles.

Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>

Christopher Jones authored on 2016/07/06 00:54:19
Showing 1 changed files
... ...
@@ -91,11 +91,9 @@ RUN set -x \
91 91
 # NOTE: ppc64le has compatibility issues with older versions of go, so make sure the version >= 1.6
92 92
 ENV GO_VERSION 1.6.2
93 93
 ENV GO_DOWNLOAD_URL https://golang.org/dl/go${GO_VERSION}.src.tar.gz
94
-ENV GO_DOWNLOAD_SHA256 787b0b750d037016a30c6ed05a8a70a91b2e9db4bd9b1a2453aa502a63f1bccc
95 94
 ENV GOROOT_BOOTSTRAP /usr/local
96 95
 
97 96
 RUN curl -fsSL "$GO_DOWNLOAD_URL" -o golang.tar.gz \
98
-    && echo "$GO_DOWNLOAD_SHA256  golang.tar.gz" | sha256sum -c - \
99 97
     && tar -C /usr/src -xzf golang.tar.gz \
100 98
     && rm golang.tar.gz \
101 99
     && cd /usr/src/go/src && ./make.bash 2>&1