From fb3e3904bdc9ec97cfacc9ed7ff61c2a9c04b7a4 Mon Sep 17 00:00:00 2001 From: Florez Ospina Juan Felipe Date: Tue, 13 May 2025 12:50:33 +0200 Subject: [PATCH] Remove defaults channel from conda source channels --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1b637a0..6995f63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ WORKDIR /acsmdc # Use mamba if available for faster installation RUN conda install -y -n base -c conda-forge mamba && \ - mamba create -y -n $ENV_NAME -c conda-forge -c defaults python=3.11 \ + mamba create -y -n $ENV_NAME -c conda-forge python=3.11 \ jupyter numpy h5py pandas matplotlib plotly=5.24 scipy pip && \ conda clean --all -y && rm -rf /root/.cache/pip