12 lines
414 B
Docker
12 lines
414 B
Docker
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
ARG JUPYTERHUB_VERSION
|
|
FROM quay.io/jupyterhub/jupyterhub:$JUPYTERHUB_VERSION
|
|
|
|
# Install dockerspawner, nativeauthenticator
|
|
# hadolint ignore=DL3013
|
|
RUN python3 -m pip install --no-cache-dir \
|
|
dockerspawner \
|
|
jupyterhub-nativeauthenticator
|
|
|
|
CMD ["jupyterhub", "-f", "/srv/jupyterhub/jupyterhub_config.py"] |