Skip to content

Commit

Permalink
Go download link has changed
Browse files Browse the repository at this point in the history
I was noticing a flakiness in the download of the
go language installer. This change in download
location should fix this.
  • Loading branch information
markmandel committed Jan 18, 2019
1 parent 0a2865d commit ab42c2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN wget -q https://static.rust-lang.org/rustup/archive/1.11.0/${RUST_ARCH}/rust
WORKDIR /usr/local
ENV GO_VERSION=1.11.4
ENV GOPATH /go
RUN wget -q https://redirector.gvt1.com/edgedl/go/go${GO_VERSION}.linux-amd64.tar.gz && \
RUN wget -q https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz && \
tar -xzf go${GO_VERSION}.linux-amd64.tar.gz && rm go${GO_VERSION}.linux-amd64.tar.gz && mkdir ${GOPATH}

# install gcloud + kubectl, because it's an easy way to test/dev against kubernetes.
Expand Down

0 comments on commit ab42c2e

Please sign in to comment.