File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ RUN yum install -y \
2121 && \
2222 rm -rf /var/cache/yum/*
2323
24- ARG GOLANG_VERSION=1.22.2
24+ ARG GOLANG_VERSION=1.22.8
2525RUN set -eux; \
2626 \
2727 arch="$(uname -m)"; \
2828 case "${arch##*-}" in \
2929 x86_64 | amd64) ARCH='amd64' ;; \
3030 ppc64el | ppc64le) ARCH='ppc64le' ;; \
31- aarch64) ARCH='arm64' ;; \
31+ aarch64 | arm64 ) ARCH='arm64' ;; \
3232 *) echo "unsupported architecture" ; exit 1 ;; \
3333 esac; \
3434 wget -nv -O - https://storage.googleapis.com/golang/go${GOLANG_VERSION}.linux-${ARCH}.tar.gz \
Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ RUN apt-get update && \
2121 && \
2222 rm -rf /var/lib/apt/lists/*
2323
24- ARG GOLANG_VERSION=1.22.2
24+ ARG GOLANG_VERSION=1.22.8
2525RUN set -eux; \
2626 \
2727 arch="$(uname -m)"; \
2828 case "${arch##*-}" in \
2929 x86_64 | amd64) ARCH='amd64' ;; \
3030 ppc64el | ppc64le) ARCH='ppc64le' ;; \
31- aarch64) ARCH='arm64' ;; \
31+ aarch64 | arm64 ) ARCH='arm64' ;; \
3232 *) echo "unsupported architecture" ; exit 1 ;; \
3333 esac; \
3434 wget -nv -O - https://storage.googleapis.com/golang/go${GOLANG_VERSION}.linux-${ARCH}.tar.gz \
You can’t perform that action at this time.
0 commit comments