Skip to content

Commit 53b9f02

Browse files
authored
Merge pull request #136 from NVIDIA/bump-go
bump default DOCKER ARG default golang version to 1.22.8
2 parents 8adb5f9 + c0e8f11 commit 53b9f02

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

deployments/container/Dockerfile.ubi9

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
2525
RUN 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 \

deployments/container/Dockerfile.ubuntu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
2525
RUN 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 \

0 commit comments

Comments
 (0)