jupyterhub-deploy-docker
jupyterhub-deploy-docker copied to clipboard
COPY jupyterhub_config.py to Dockerfile.jupyterhub image
Shouldn't jupyterhub_config.py
be copied to the image so it reflects changes made? I was editing my jupyterhub_config.py
file and noticed that changes were not reflecting.
Shouldn't
jupyterhub_config.py
be copied to the image so it reflects changes made? I was editing myjupyterhub_config.py
file and noticed that changes were not reflecting.
No because the hub
service uses an image that derives from jupyterhub/jupyterhub-onbuild
and that image has an ONBUILD
instruction that triggers the copy.
That said, I feel it obfuscate what happens and I would be in favor of your changes if you add
- FROM jupyterhub/jupyterhub-onbuild:$JUPYTERHUB_VERSION
+ FROM jupyterhub/jupyterhub:$JUPYTERHUB_VERSION
in Dockerfile.jupyterhub
.