From bf2b9cea0075c3562cced2b282a0de95c3f42c2e Mon Sep 17 00:00:00 2001 From: James Gebbie-Rayet Date: Wed, 24 Sep 2025 12:33:10 +0100 Subject: [PATCH] switch conda to mamba --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 8de0541..6bc3883 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ ARG BASE_IMAGE=latest FROM ghcr.io/ccpbiosim/jupyterhub-base:$BASE_IMAGE LABEL maintainer="James Gebbie-Rayet " -LABEL org.opencontainers.image.source=https://github.com/ccpbiosim/biosim-basic-analysis-workshop +LABEL org.opencontainers.image.source=https://github.com/ccpbiosim/basic-analysis-workshop LABEL org.opencontainers.image.description="A container environment for the ccpbiosim workshop on basic analysis." LABEL org.opencontainers.image.licenses=MIT @@ -12,7 +12,7 @@ USER $NB_USER WORKDIR $HOME # Install workshop deps -RUN conda install matplotlib numpy nglview ipywidgets -y +RUN mamba install matplotlib numpy nglview ipywidgets -y RUN pip install mdtraj # Get workshop files and move them to jovyan directory.