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