Skip to content

Commit 7c773e1

Browse files
committed
Merge pull request notablemind#13 from ebu/master
Simple Dockerfile
2 parents 1f648f3 + d6fd50d commit 7c773e1

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+
FROM jupyter/notebook
2+
3+
COPY . /root/jupyter-nodejs
4+
WORKDIR /root/jupyter-nodejs
5+
6+
RUN mkdir -p /root/.ipython/kernels/nodejs/
7+
RUN npm install
8+
RUN node install.js
9+
RUN make
10+
11+
CMD sh -c 'jupyter notebook --NotebookApp.port=8888 --no-browser --ip=* --debug'
12+
13+
EXPOSE 8888

0 commit comments

Comments
 (0)