From e8874a5fab5291e20bd1639b790180ef0b9f015f Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Fri, 28 Jul 2023 17:17:39 +0400 Subject: [PATCH] Fix mamba install commands --- docs/using/recipes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/using/recipes.md b/docs/using/recipes.md index 5eb5b572..706d4a26 100644 --- a/docs/using/recipes.md +++ b/docs/using/recipes.md @@ -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}"