Files
docker-stacks/docs/using/recipe_code/jupyterhub_version.dockerfile
2025-04-03 13:10:03 +01:00

8 lines
235 B
Docker

ARG BASE_IMAGE=quay.io/jupyter/base-notebook
FROM $BASE_IMAGE
RUN mamba install --yes 'jupyterhub-singleuser==5.2.1' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"