First complete version

This commit is contained in:
Eric Coissac
2025-10-16 01:07:07 +02:00
parent 57bf9934a3
commit 02b48e75fa
24 changed files with 1265 additions and 110 deletions

View File

@@ -0,0 +1,16 @@
FROM jupyterhub/jupyterhub:latest
# Install DockerSpawner
RUN pip install dockerspawner
# Copy configuration
COPY jupyterhub_config.py /srv/jupyterhub/jupyterhub_config.py
# Expose port
EXPOSE 8000
# Working directory
WORKDIR /srv/jupyterhub
# Startup command
CMD ["jupyterhub", "-f", "/srv/jupyterhub/jupyterhub_config.py"]