Skip to content

Commit

Permalink
Dockerfile should use the correct nvidia channel to install libcu* (#423
Browse files Browse the repository at this point in the history
)
  • Loading branch information
praateekmahajan authored Dec 12, 2024
1 parent 1c0382e commit f56e924
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,16 @@ LABEL "nemo.library"=${IMAGE_LABEL}
WORKDIR /opt

# Install the minimal libcu* libraries needed by NeMo Curator
RUN conda create -y --name curator -c conda-forge -c nvidia \
ENV _CUDA_VER=${CUDA_VER}
RUN conda create -y --name curator -c nvidia/label/cuda-${_CUDA_VER} -c conda-forge \
python=3.10 \
cuda-cudart \
libcufft \
libcublas \
libcurand \
libcusparse \
libcusolver && \
libcusolver \
cuda-nvvm && \
source activate curator && \
pip install --upgrade pytest pip

Expand Down

0 comments on commit f56e924

Please sign in to comment.