Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +7 -1
Dockerfile
CHANGED
@@ -14,4 +14,10 @@ COPY your_notebook_file.ipynb /app/your_notebook_file.ipynb
|
|
14 |
EXPOSE 8888
|
15 |
|
16 |
# Run Jupyter Notebook
|
17 |
-
CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--port=8888", "--no-browser", "--allow-root"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
EXPOSE 8888
|
15 |
|
16 |
# Run Jupyter Notebook
|
17 |
+
CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--port=8888", "--no-browser", "--allow-root"]
|
18 |
+
|
19 |
+
# Copy requirements.txt into the container
|
20 |
+
COPY requirements.txt /app/requirements.txt
|
21 |
+
|
22 |
+
# Install the dependencies
|
23 |
+
RUN pip install -r requirements.txt
|