From 62b78136b1be31fdd97532618fba3e8a7ee26984 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefanie=20D=C3=BCssler?= Date: Wed, 11 Oct 2023 11:59:33 +0100 Subject: [PATCH] fix [docker] conda environment for docker --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9f49d0448..d96957346 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN conda init bash && \ conda config --set always_yes yes --set changeps1 no && \ conda update -q conda && \ conda config --set auto_activate_base false && \ - conda env create -f /sharpy_dir/utils/environment_minimal.yml && conda clean -afy && \ + conda env create -f /sharpy_dir/utils/environment_new.yml && conda clean -afy && \ find /miniconda3/ -follow -type f -name '*.a' -delete && \ find /miniconda3/ -follow -type f -name '*.pyc' -delete && \ find /miniconda3/ -follow -type f -name '*.js.map' -delete @@ -40,7 +40,7 @@ RUN conda init bash && \ RUN ln -s /sharpy_dir/utils/docker/* /root/ RUN cd sharpy_dir && \ - conda activate sharpy_minimal && \ + conda activate sharpy && \ git submodule update --init --recursive && \ mkdir build && \ cd build && \