Fix mamba install commands

This commit is contained in:
Ayaz Salikhov
2023-07-28 17:17:39 +04:00
parent b6786dc79d
commit e8874a5fab

View File

@@ -113,6 +113,7 @@ FROM jupyter/base-notebook
# Install the Dask dashboard
RUN mamba install --yes 'dask-labextension' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"
@@ -582,8 +583,7 @@ RUN apt-get update --yes && \
# Switch back to jovyan to avoid accidental container runs as root
USER ${NB_UID}
RUN mamba install --yes \
'pyodbc' && \
RUN mamba install --yes 'pyodbc' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"