We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c0382e commit f56e924Copy full SHA for f56e924
Dockerfile
@@ -29,14 +29,16 @@ LABEL "nemo.library"=${IMAGE_LABEL}
29
WORKDIR /opt
30
31
# Install the minimal libcu* libraries needed by NeMo Curator
32
-RUN conda create -y --name curator -c conda-forge -c nvidia \
+ENV _CUDA_VER=${CUDA_VER}
33
+RUN conda create -y --name curator -c nvidia/label/cuda-${_CUDA_VER} -c conda-forge \
34
python=3.10 \
35
cuda-cudart \
36
libcufft \
37
libcublas \
38
libcurand \
39
libcusparse \
- libcusolver && \
40
+ libcusolver \
41
+ cuda-nvvm && \
42
source activate curator && \
43
pip install --upgrade pytest pip
44
0 commit comments