Skip to content

Commit 1f1f9cd

Browse files
authored
Merge pull request #1686 from NVIDIA/cuda-base-bump
Bump CUDA base image versions for operator and validator
2 parents 2d9a970 + b00e1a8 commit 1f1f9cd

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ jobs:
154154
env:
155155
IMAGE_NAME: ghcr.io/${LOWERCASE_REPO_OWNER}/gpu-operator
156156
VERSION: ${COMMIT_SHORT_SHA}-arm64
157+
CVE_UPDATES: "pam libarchive"
157158
run: |
158159
echo "${VERSION}"
159160
make build-${{ matrix.dist }}
@@ -195,6 +196,7 @@ jobs:
195196
IMAGE_NAME: ghcr.io/${LOWERCASE_REPO_OWNER}/gpu-operator/gpu-operator-validator
196197
VERSION: ${COMMIT_SHORT_SHA}-arm64
197198
SUBCOMPONENT: validator
199+
CVE_UPDATES: "pam libarchive"
198200
run: |
199201
echo "${VERSION}"
200202
make build-${{ matrix.dist }}
@@ -240,6 +242,7 @@ jobs:
240242
env:
241243
IMAGE_NAME: ghcr.io/${LOWERCASE_REPO_OWNER}/gpu-operator
242244
VERSION: ${COMMIT_SHORT_SHA}-amd64
245+
CVE_UPDATES: "pam libarchive"
243246
run: |
244247
echo "${VERSION}"
245248
make build-${{ matrix.dist }}
@@ -282,6 +285,7 @@ jobs:
282285
IMAGE_NAME: ghcr.io/${LOWERCASE_REPO_OWNER}/gpu-operator/gpu-operator-validator
283286
VERSION: ${COMMIT_SHORT_SHA}-amd64
284287
SUBCOMPONENT: validator
288+
CVE_UPDATES: "pam libarchive"
285289
run: |
286290
echo "${VERSION}"
287291
make build-${{ matrix.dist }}

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
ARG GOLANG_VERSION=x.x.x
1616

17-
FROM nvcr.io/nvidia/cuda:12.8.1-base-ubi9 as builder
17+
FROM nvcr.io/nvidia/cuda:13.0.0-base-ubi9 as builder
1818

1919
RUN dnf install -y wget make git gcc
2020

@@ -55,7 +55,7 @@ ARG VERSION="unknown"
5555
ARG GIT_COMMIT="unknown"
5656
RUN make gpu-operator
5757

58-
FROM nvcr.io/nvidia/cuda:12.8.1-base-ubi9
58+
FROM nvcr.io/nvidia/cuda:13.0.0-base-ubi9
5959

6060
# Remove CUDA libs(compat etc) in favor of libs installed by the NVIDIA driver
6161
RUN dnf remove -y cuda-*

validator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
ARG CUDA_SAMPLE_IMAGE=undefined
1616
ARG GOLANG_VERSION=x.x.x
1717

18-
FROM nvcr.io/nvidia/cuda:12.8.1-base-ubi9 as build
18+
FROM nvcr.io/nvidia/cuda:13.0.0-base-ubi9 as build
1919

2020
RUN dnf install -y wget make git gcc
2121

@@ -51,7 +51,7 @@ FROM ${CUDA_SAMPLE_IMAGE} AS sample-builder
5151
RUN mkdir /artifacts
5252
RUN cp /cuda-samples/vectorAdd /artifacts/vectorAdd
5353

54-
FROM nvcr.io/nvidia/cuda:12.8.1-base-ubi9
54+
FROM nvcr.io/nvidia/cuda:13.0.0-base-ubi9
5555

5656
# Remove CUDA libs(compat etc) in favor of libs installed by the NVIDIA driver
5757
RUN dnf remove -y cuda-*

0 commit comments

Comments
 (0)