From 4d45138b7de7789341a3ffbc93ea500f13c0569d Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Fri, 4 Feb 2022 12:27:43 +0300 Subject: [PATCH] Update base-notebook/Dockerfile --- base-notebook/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index 82e42b9a..2aae5326 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -118,7 +118,7 @@ RUN mkdir "/home/${NB_USER}/work" && \ # Do all this in a single RUN command to avoid duplicating all of the # files across image layers when the permissions change COPY --chown="${NB_UID}:${NB_GID}" --from=download_micromamba_stage /tmp/micromamba.tar.bz2 /tmp -COPY --chown="${NB_UID}:${NB_GID}" initial-condarc "${CONDA_DIR}/.condarc" +COPY --chown="${NB_UID}:${NB_GID}" initial-condarc "${CONDA_DIR}/.condarc" RUN set -x && \ tar -xvjf /tmp/micromamba.tar.bz2 \ --directory=/tmp --strip-components=1 bin/micromamba && \