This commit is contained in:
dependabot[bot] 2025-06-26 08:39:07 +00:00 committed by GitHub
commit 66ff4b1861
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,7 @@
ARG GOLANG_VERSION=x.x.x
ARG VERSION="N/A"
FROM nvcr.io/nvidia/cuda:12.9.0-base-ubi9 AS build
FROM nvcr.io/nvidia/cuda:12.9.1-base-ubi9 AS build
RUN dnf install -y \
wget make git gcc \
@ -84,7 +84,7 @@ LABEL description="See summary"
COPY LICENSE /licenses/
# The debpackages stage is used to extract the contents of deb packages.
FROM nvcr.io/nvidia/cuda:12.9.0-base-ubuntu20.04 AS debpackages
FROM nvcr.io/nvidia/cuda:12.9.1-base-ubuntu20.04 AS debpackages
ARG TARGETARCH
ARG PACKAGE_DIST_DEB=ubuntu18.04
@ -103,7 +103,7 @@ RUN set -eux; \
for p in $(ls /deb-packages/${ARCH}/*.deb); do dpkg-deb -xv $p /artifacts/deb/; done
# The rpmpackages stage is used to extract the contents of the rpm packages.
FROM nvcr.io/nvidia/cuda:12.9.0-base-ubi9 AS rpmpackages
FROM nvcr.io/nvidia/cuda:12.9.1-base-ubi9 AS rpmpackages
RUN dnf install -y cpio
ARG TARGETARCH