Files
OBIJupyterHub/obijupyterhub/Dockerfile.hub
Eric Coissac 30b7175702 Make cleaning
2025-11-17 14:18:13 +01:00

16 lines
413 B
Docker

FROM jupyterhub/jupyterhub:latest
# Install DockerSpawner
RUN pip install dockerspawner
# Copy configuration
COPY jupyterhub_config.py /srv/jupyterhub/jupyterhub_config.py
COPY jupyterhub_templates/login.html /srv/venv/share/jupyterhub/templates/login.html
# Expose port
EXPOSE 8000
# Working directory
WORKDIR /srv/jupyterhub
# Startup command
CMD ["jupyterhub", "-f", "/srv/jupyterhub/jupyterhub_config.py"]