diff --git a/docker/Dockerfile b/docker/Dockerfile index d65e09f..4fd1447 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/jimboid/biosim-python-workshop +LABEL org.opencontainers.image.source=https://github.com/ccpbiosim/python-workshop LABEL org.opencontainers.image.description="A container environment for the ccpbiosim workshop on Python." LABEL org.opencontainers.image.licenses=MIT @@ -12,7 +12,7 @@ USER $NB_USER WORKDIR $HOME # Install workshop deps -RUN conda install matplotlib numpy pandas nglview ipywidgets -y +RUN mamba install matplotlib numpy pandas nglview ipywidgets -y RUN pip install mdtraj # Get workshop files and move them to jovyan directory.