Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG BASE_IMAGE=latest
FROM ghcr.io/ccpbiosim/jupyterhub-base:$BASE_IMAGE

LABEL maintainer="James Gebbie-Rayet <james.gebbie@stfc.ac.uk>"
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

Expand All @@ -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.
Expand Down