Sign inSign up

jupyterhub/singleuser

By jupyterhub

Updated 2 days ago

single-user docker images for use with JupyterHub and DockerSpawner see also: jupyter/docker-stacks

Image
Integration & delivery
Machine learning & AI
Data science
49

10M+

Dockerfile
# Build as jupyterhub/singleuser
# Run with the DockerSpawner in JupyterHub

ARG BASE_IMAGE=jupyter/base-notebook
FROM $BASE_IMAGE
MAINTAINER Project Jupyter <[email protected]>

ADD install_jupyterhub /tmp/install_jupyterhub
ARG JUPYTERHUB_VERSION=main
# install pinned jupyterhub and ensure notebook is installed
RUN python3 /tmp/install_jupyterhub && \
    python3 -m pip install notebook