Skip to content

Commit 72e693d

Browse files
author
Ben Mather
committed
add docker file
1 parent 8f02206 commit 72e693d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Dockerfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
ARG FROMIMG_ARG=brmather/docker-hons-pye:2019.04.13
2+
FROM ${FROMIMG_ARG}
3+
4+
USER jovyan
5+
6+
WORKDIR /home/jovyan
7+
8+
# expose notebook port server port
9+
EXPOSE 8888
10+
11+
# launch notebook
12+
CMD ["jupyter", "notebook", "--ip='0.0.0.0'", "--NotebookApp.token='' ", "--NotebookApp.default_url=/tree/0-StartHere.ipynb"]
13+

0 commit comments

Comments
 (0)