We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecb65fe commit 7a2c025Copy full SHA for 7a2c025
1 file changed
.ci/oci.Dockerfile
@@ -30,7 +30,9 @@ RUN export ARCH="$(uname -m)" && if [[ ${ARCH} == "x86_64" ]]; then export ARCH=
30
curl -fsSL "https://go.dev/dl/go${GO_VERSION}.linux-${ARCH}.tar.gz" -o go.tar.gz && \
31
rm -rf /usr/local/go && \
32
tar -C /usr/local -xzf go.tar.gz && \
33
- rm go.tar.gz
+ rm go.tar.gz && \
34
+ ln -sf /usr/local/go/bin/go /usr/bin/go.real && \
35
+ ln -sf /usr/local/go/bin/gofmt /usr/bin/gofmt
36
RUN go version
37
38
# Temporary workaround since mirror.centos.org is down and can be replaced with vault.centos.org
0 commit comments