File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- FROM nvidia/cuda:12.2.2-cudnn8 -devel-ubuntu22.04 as builder
1+ FROM nvidia/cuda:12.4.1-cudnn -devel-ubuntu22.04 as builder
22
33RUN apt-get update && \
44 apt-get install -y --no-install-recommends \
@@ -77,21 +77,21 @@ RUN cd python && \
7777 python3 -m pip --no-cache-dir install -r install_requirements.txt && \
7878 python3 setup.py bdist_wheel --dist-dir $CTRANSLATE2_ROOT
7979
80- FROM nvidia/cuda:12.2.2 -base-ubuntu22.04
80+ FROM nvidia/cuda:12.4.1 -base-ubuntu22.04
8181
8282# We remove the cuda-compat package because it conflicts with the CUDA Enhanced Compatibility.
8383# See e.g. https://github.com/NVIDIA/nvidia-docker/issues/1515
8484RUN apt-get update && \
8585 apt-get install -y --no-install-recommends \
86- libcublas-12-2 \
87- libcudnn8=8.9.7.29-1+cuda12.2 \
88- libnccl2=2.19.3-1+cuda12.2 \
86+ libcublas-12-4 \
87+ libcudnn9-cuda-12 \
88+ libnccl2 \
8989 libopenmpi3=4.1.2-2ubuntu1 \
9090 openmpi-bin \
9191 libgomp1 \
9292 python3-pip \
9393 && \
94- apt-get purge -y cuda-compat-12-2 && \
94+ apt-get purge -y cuda-compat-12-4 && \
9595 apt-get clean && \
9696 rm -rf /var/lib/apt/lists/*
9797
You can’t perform that action at this time.
0 commit comments