Spaces:
Sleeping
Sleeping
| # FROM jupyterhub/jupyterhub:latest | |
| # | |
| # # Expose port 7680 | |
| # EXPOSE 7680 | |
| # | |
| # # Your additional configuration and setup can go here | |
| # | |
| # # Start JupyterHub | |
| # CMD ["jupyterhub", "--port", "7680"] | |
| FROM jupyter/base-notebook:latest | |
| # Start Jupyter Lab when the container launches | |
| CMD ["jupyter", "lab", "--ip", "0.0.0.0", "--port", "7860", "--allow-root", "--NotebookApp.token=''", "--NotebookApp.password=''"] | |