Skip to content

Commit

Permalink
switch from 'mamba' to 'conda' executable
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Sep 30, 2024
1 parent 75eae84 commit 4501d4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ conda config --show-sources
conda list --show-channel-urls

# Install RAPIDS
mamba install -y -n base \
conda install -y -n base \
"rapids=${RAPIDS_VER}.*" \
"python=${PYTHON_VER}.*" \
"cuda-version=${CUDA_VER%.*}.*" \
Expand Down Expand Up @@ -90,12 +90,12 @@ COPY --from=dependencies --chown=rapids /test_notebooks_dependencies.yaml test_n
COPY --from=dependencies --chown=rapids /notebooks /home/rapids/notebooks

RUN <<EOF
mamba env update -n base -f test_notebooks_dependencies.yaml
conda env update -n base -f test_notebooks_dependencies.yaml
conda clean -afy
EOF

RUN <<EOF
mamba install -y -n base \
conda install -y -n base \
"jupyterlab=4" \
dask-labextension \
jupyterlab-nvdashboard
Expand Down

0 comments on commit 4501d4f

Please sign in to comment.