@@ -83,6 +83,8 @@ ARG LINUX_VER=notset
8383ARG PYTHON_VER=notset
8484ARG DEBIAN_FRONTEND=noninteractive
8585ENV PATH=/opt/conda/bin:$PATH
86+ # ensure conda's files and configuration can be found at runtime even if environment activation was bypassed
87+ ENV CONDA_PREFIX=/opt/conda
8688ENV PYTHON_VERSION=${PYTHON_VER}
8789
8890SHELL ["/bin/bash" , "-euo" , "pipefail" , "-c" ]
@@ -174,7 +176,7 @@ PACKAGES_TO_INSTALL=(
174176 'ipython>=8.37.0'
175177 'rapids-cli==0.1.*'
176178)
177- rapids-mamba -retry install -y -n base \
179+ rapids-conda -retry install -y -n base \
178180 "${PACKAGES_TO_INSTALL[@]}"
179181
180182conda clean -afy
@@ -204,7 +206,7 @@ COPY --from=dependencies --chown=rapids /test_notebooks_dependencies.yaml test_n
204206COPY --from=dependencies --chown=rapids /notebooks /home/rapids/notebooks
205207
206208RUN <<EOF
207- rapids-mamba -retry env update -n base -f test_notebooks_dependencies.yaml
209+ rapids-conda -retry env update -n base -f test_notebooks_dependencies.yaml
208210conda clean -afy
209211EOF
210212
@@ -214,7 +216,7 @@ PACKAGES_TO_INSTALL=(
214216 'dask-labextension>=7.0.0'
215217 'jupyterlab-nvdashboard>=0.13.0'
216218)
217- rapids-mamba -retry install -y -n base \
219+ rapids-conda -retry install -y -n base \
218220 "${PACKAGES_TO_INSTALL[@]}"
219221conda clean -afy
220222EOF
0 commit comments