Spaces:
Sleeping
Sleeping
File size: 411 Bytes
04f7f3e 2e71df2 04f7f3e 2e71df2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# 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=''"]
|