Spaces:
Runtime error
Runtime error
Commit
·
bacb293
1
Parent(s):
c36ec99
chore: Copy notebooks into the container
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -85,6 +85,9 @@ RUN pip install --no-cache-dir --upgrade -r /home/user/base_requirements.txt
|
|
| 85 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 86 |
COPY --chown=user . $HOME/app
|
| 87 |
|
|
|
|
|
|
|
|
|
|
| 88 |
RUN chmod +x start_server.sh
|
| 89 |
|
| 90 |
COPY --chown=user login.html /home/user/miniconda/lib/python3.11/site-packages/jupyter_server/templates/login.html
|
|
|
|
| 85 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 86 |
COPY --chown=user . $HOME/app
|
| 87 |
|
| 88 |
+
# Copy notebooks into the container
|
| 89 |
+
COPY --chown=user notebooks /home/user/notebooks
|
| 90 |
+
|
| 91 |
RUN chmod +x start_server.sh
|
| 92 |
|
| 93 |
COPY --chown=user login.html /home/user/miniconda/lib/python3.11/site-packages/jupyter_server/templates/login.html
|