We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc0bd14 commit 0dcaa62Copy full SHA for 0dcaa62
e2e/Dockerfile
@@ -11,9 +11,9 @@ ENV GOBIN /go/bin
11
RUN apk update && apk add bash gcc musl-dev openssl go git aws-cli jq
12
13
# Upgrade go to $GOLANG_VERSION. The version that's available in the base image is older than what we need.
14
-RUN wget https://dl.google.com/go/go$GOLANG_VERSION.linux-arm64.tar.gz && tar -C /usr/local -xzf go$GOLANG_VERSION.linux-arm64.tar.gz
+RUN wget https://dl.google.com/go/go$GOLANG_VERSION.linux-amd64.tar.gz && tar -C /usr/local -xzf go$GOLANG_VERSION.linux-amd64.tar.gz
15
ENV PATH=$PATH:/usr/local/go/bin
16
-RUN rm go$GOLANG_VERSION.linux-arm64.tar.gz
+RUN rm go$GOLANG_VERSION.linux-amd64.tar.gz
17
RUN apk del go
18
19
ENV GOPROXY=direct
0 commit comments