Skip to content

Commit f56e924

Browse files
Dockerfile should use the correct nvidia channel to install libcu* (#423)
1 parent 1c0382e commit f56e924

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,16 @@ LABEL "nemo.library"=${IMAGE_LABEL}
2929
WORKDIR /opt
3030

3131
# Install the minimal libcu* libraries needed by NeMo Curator
32-
RUN conda create -y --name curator -c conda-forge -c nvidia \
32+
ENV _CUDA_VER=${CUDA_VER}
33+
RUN conda create -y --name curator -c nvidia/label/cuda-${_CUDA_VER} -c conda-forge \
3334
python=3.10 \
3435
cuda-cudart \
3536
libcufft \
3637
libcublas \
3738
libcurand \
3839
libcusparse \
39-
libcusolver && \
40+
libcusolver \
41+
cuda-nvvm && \
4042
source activate curator && \
4143
pip install --upgrade pytest pip
4244

0 commit comments

Comments
 (0)