First version of obijupyterhub
This commit is contained in:
16
Dockerfile.hub
Normal file
16
Dockerfile.hub
Normal file
@@ -0,0 +1,16 @@
|
||||
FROM jupyterhub/jupyterhub:latest
|
||||
|
||||
# Installation de DockerSpawner
|
||||
RUN pip install dockerspawner
|
||||
|
||||
# Copie de la configuration
|
||||
COPY jupyterhub_config.py /srv/jupyterhub/jupyterhub_config.py
|
||||
|
||||
# Port exposé
|
||||
EXPOSE 8000
|
||||
|
||||
# Répertoire de travail
|
||||
WORKDIR /srv/jupyterhub
|
||||
|
||||
# Commande de démarrage
|
||||
CMD ["jupyterhub", "-f", "/srv/jupyterhub/jupyterhub_config.py"]
|
||||
Reference in New Issue
Block a user