Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -10,5 +10,5 @@ EXPOSE 7860
|
|
10 |
# Copy the current directory contents into the container at /home/jovyan/work
|
11 |
COPY . /home/jovyan/work
|
12 |
|
13 |
-
# Run Jupyter Notebook upon container startup
|
14 |
-
CMD ["jupyter", "notebook", "--ip='*'", "--port=7860", "--no-browser", "--allow-root"]
|
|
|
10 |
# Copy the current directory contents into the container at /home/jovyan/work
|
11 |
COPY . /home/jovyan/work
|
12 |
|
13 |
+
# Run Jupyter Notebook upon container startup with token authentication enabled
|
14 |
+
CMD ["jupyter", "notebook", "--ip='*'", "--port=7860", "--no-browser", "--allow-root", "--NotebookApp.token='amma1000'"]
|