Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -13,7 +13,7 @@ WORKDIR /app
|
|
13 |
RUN pip3 install jupyterlab
|
14 |
|
15 |
# Expose port 8080
|
16 |
-
EXPOSE
|
17 |
|
18 |
# Start JupyterLab on port 8080 without authentication
|
19 |
-
CMD ["jupyter", "lab", "--ip=0.0.0.0", "--port=
|
|
|
13 |
RUN pip3 install jupyterlab
|
14 |
|
15 |
# Expose port 8080
|
16 |
+
EXPOSE 7860
|
17 |
|
18 |
# Start JupyterLab on port 8080 without authentication
|
19 |
+
CMD ["jupyter", "lab", "--ip=0.0.0.0", "--port=7860", "--no-browser", "--allow-root", "--NotebookApp.token=''"]
|