HW1 infrastructure

This commit is contained in:
Hladu357 2025-02-24 18:00:15 +02:00
parent e4f3ab4742
commit 8a5c08d85c
2 changed files with 14 additions and 0 deletions

9
hw1/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM jupyter/base-notebook:latest
WORKDIR /work
# RUN pip install --no-cache-dir numpy pandas
EXPOSE 8888
CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--port=8888", "--no-browser", "--allow-root"]

5
hw1/run.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
docker run -p 8888:8888 \
-v "$(pwd)":/work \
jupyter