From bb47d9d658bd4f563b8798efc2d3b8558d460e3a Mon Sep 17 00:00:00 2001 From: Elsa Culler Date: Wed, 2 Oct 2024 17:35:23 -0600 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index efe33dc..01e415d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,8 @@ RUN conda config --add channels conda-forge # Create environment COPY environment.yml /home/jovyan/ -RUN conda env update -n base -f /home/jovyan/environment.yml +RUN conda install -n base -c conda-forge mamba +RUN mamba env update -n base -f /home/jovyan/environment.yml # Activating environment RUN echo ". /opt/conda/etc/profile.d/conda.sh" >> /home/jovyan/.bash_profile && \