Traduction en anglais des fichiers

This commit is contained in:
Eric Coissac
2025-10-15 07:10:44 +02:00
parent 65d94c5719
commit 21fc3a2c1f
6 changed files with 296 additions and 155 deletions

View File

@@ -1,16 +1,16 @@
FROM jupyterhub/jupyterhub:latest
# Installation de DockerSpawner
# Install DockerSpawner
RUN pip install dockerspawner
# Copie de la configuration
# Copy configuration
COPY jupyterhub_config.py /srv/jupyterhub/jupyterhub_config.py
# Port exposé
# Expose port
EXPOSE 8000
# Répertoire de travail
# Working directory
WORKDIR /srv/jupyterhub
# Commande de démarrage
# Startup command
CMD ["jupyterhub", "-f", "/srv/jupyterhub/jupyterhub_config.py"]