HW1 infrastructure
This commit is contained in:
parent
e4f3ab4742
commit
8a5c08d85c
|
@ -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"]
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
docker run -p 8888:8888 \
|
||||
-v "$(pwd)":/work \
|
||||
jupyter
|
Loading…
Reference in New Issue