mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-07 10:04:03 +00:00
8 lines
235 B
Docker
8 lines
235 B
Docker
ARG BASE_IMAGE=quay.io/jupyter/base-notebook
|
|
FROM $BASE_IMAGE
|
|
|
|
RUN mamba install --yes 'jupyterhub-singleuser==4.0.1' && \
|
|
mamba clean --all -f -y && \
|
|
fix-permissions "${CONDA_DIR}" && \
|
|
fix-permissions "/home/${NB_USER}"
|