-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (25 loc) · 682 Bytes
/
Dockerfile
File metadata and controls
33 lines (25 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM jupyter/datascience-notebook:9f4983c5d1f3
RUN pip install networkx
RUN pip install utils
RUN pip install git+https://github.com/nkoub/multinetx.git
RUN pip install "flask==1.0.1" "CairoSVG==2.1.3"
USER root
RUN apt-get update && apt-get install -y \
libz-dev
# curl\
# nodejs
USER jovyan
# # # update
# # RUN apt-get update
# # # install curl
# # RUN apt-get install curl
# # # get install script and pass it to execute:
# RUN curl -sL https://deb.nodesource.com/setup_12.x
# # and install node
# # RUN apt-get install nodejs
# # confirm that it was successful
# RUN node -v
# # npm installs automatically
# RUN npm -v
# RUN npm i d3-save-svg
EXPOSE 8888