Spaces:
Sleeping
Sleeping
updated dockerfile to allow root permissions
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -33,9 +33,10 @@ USER $NB_UID
|
|
33 |
# Expose Jupyter's default port
|
34 |
EXPOSE 8888
|
35 |
|
36 |
-
# Run Jupyter Notebook, disabling token & password
|
37 |
CMD start.sh jupyter notebook \
|
38 |
--ip=0.0.0.0 --port=8888 --no-browser \
|
|
|
39 |
--NotebookApp.token= --NotebookApp.password= \
|
40 |
--NotebookApp.allow_origin=* --NotebookApp.disable_check_xsrf=True \
|
41 |
--NotebookApp.allow_remote_access=True \
|
|
|
33 |
# Expose Jupyter's default port
|
34 |
EXPOSE 8888
|
35 |
|
36 |
+
# Run Jupyter Notebook, disabling token & password, allow root access
|
37 |
CMD start.sh jupyter notebook \
|
38 |
--ip=0.0.0.0 --port=8888 --no-browser \
|
39 |
+
--allow-root\
|
40 |
--NotebookApp.token= --NotebookApp.password= \
|
41 |
--NotebookApp.allow_origin=* --NotebookApp.disable_check_xsrf=True \
|
42 |
--NotebookApp.allow_remote_access=True \
|