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 20, 2019
1 parent 0a2865d commit 327ece5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/build-image/Dockerfile
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
2 changes: 1 addition & 1 deletion build/e2e-image/Dockerfile
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && \
WORKDIR /usr/local
ENV GO_VERSION=1.11.1
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}

ENV PATH /usr/local/go/bin:/go/bin:$PATH
Expand Down

0 comments on commit 327ece5

Please sign in to comment.