Remove defaults channel from conda source channels

This commit is contained in:
2025-05-13 12:50:33 +02:00
parent 37671a3685
commit fb3e3904bd

View File

@ -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