We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c929203 commit 35b5993Copy full SHA for 35b5993
Dockerfile
@@ -28,9 +28,11 @@ FROM rapidsai/ci-conda:cuda${CUDA_VER}-${LINUX_VER}-py${PYTHON_VER}
28
LABEL "nemo.library"=${IMAGE_LABEL}
29
WORKDIR /opt
30
31
+# Re-declare ARGs after new FROM to make them available in this stage
32
+ARG CUDA_VER
33
+
34
# Install the minimal libcu* libraries needed by NeMo Curator
-ENV _CUDA_VER=${CUDA_VER}
-RUN conda create -y --name curator -c nvidia/label/cuda-${_CUDA_VER} -c conda-forge \
35
+RUN conda create -y --name curator -c nvidia/label/cuda-${CUDA_VER} -c conda-forge \
36
python=3.10 \
37
cuda-cudart \
38
libcufft \
0 commit comments