Skip to content

Commit

Permalink
Docker use go1.13.8 instead of go1.15.5
Browse files Browse the repository at this point in the history
Now everywhere we're using the same version
  • Loading branch information
assafmo committed Oct 5, 2021
1 parent 7fea840 commit 5f32839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployment/dockerfiles/base.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ ENV GOROOT=/usr/local/go
ENV GOPATH=/go/
ENV PATH=$PATH:/usr/local/go/bin:$GOPATH/bin

RUN curl -O https://dl.google.com/go/go1.15.5.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf go1.15.5.linux-amd64.tar.gz
RUN curl -O https://dl.google.com/go/go1.13.8.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf go1.13.8.linux-amd64.tar.gz
RUN go get -u github.com/jteeuwen/go-bindata/...

RUN wget -q https://github.com/WebAssembly/wabt/releases/download/1.0.20/wabt-1.0.20-ubuntu.tar.gz && \
Expand Down

0 comments on commit 5f32839

Please sign in to comment.