Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ RUN ARCH=$(uname -m) && OS_ARCH=${ARCH/amd64/x86_64} && OS_ARCH=${ARCH/aarch64/s

ARG CUDA_SAMPLES_VERSION
RUN CUDA_PACKAGE_VERSION=${CUDA_SAMPLES_VERSION/./-} && \
dnf install -y --allowerasing \
dnf install -y --allowerasing --setopt=install_weak_deps=False \
cmake \
cuda-cudart-devel-${CUDA_PACKAGE_VERSION} \
cuda-compat-${CUDA_PACKAGE_VERSION} \
cuda-nvcc-${CUDA_PACKAGE_VERSION} \
g++ \
curl \
&& \
dnf clean all
dnf clean all && rm -rf /var/cache/dnf

ENV PATH=/usr/local/cuda/bin:${PATH}

Expand Down