mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-12 12:33:02 +00:00
12 lines
329 B
Docker
12 lines
329 B
Docker
# Build as jupyterhub/singleuser
|
|
# Run with the DockerSpawner in JupyterHub
|
|
|
|
ARG BASE_IMAGE=jupyter/base-notebook
|
|
FROM $BASE_IMAGE
|
|
MAINTAINER Project Jupyter <jupyter@googlegroups.com>
|
|
|
|
ADD install_jupyterhub /tmp/install_jupyterhub
|
|
ARG JUPYTERHUB_VERSION=git:HEAD
|
|
# install pinned jupyterhub
|
|
RUN python3 /tmp/install_jupyterhub
|