Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit 6100606

Browse files
committed
Dockerfile.ubi: cuda-base: add missing runtime deps
1 parent 5f322d4 commit 6100606

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Dockerfile.ubi

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,13 @@ RUN curl -Lo /etc/yum.repos.d/cuda-rhel9.repo \
4242
https://developer.download.nvidia.com/compute/cuda/repos/rhel9/x86_64/cuda-rhel9.repo
4343

4444
RUN microdnf install -y \
45-
cuda-nvcc-12-4 cuda-nvtx-12-4 cuda-libraries-devel-12-4 && \
46-
microdnf clean all
45+
microdnf install -y \
46+
cuda-nvcc-12-4 \
47+
cuda-nvtx-12-4 \
48+
cuda-cudart-12-4 \
49+
cuda-compat-12-4 \
50+
cuda-libraries-devel-12-4 \
51+
&& microdnf clean all
4752

4853
ENV CUDA_HOME="/usr/local/cuda" \
4954
PATH="${CUDA_HOME}/bin:${PATH}" \

0 commit comments

Comments
 (0)