Skip to content

Commit 0ad38ba

Browse files
committed
install tools for jupyter notebooks
1 parent 9a2e1b0 commit 0ad38ba

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

Dockerfile

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,22 @@ FROM mcr.microsoft.com/vscode/devcontainers/base:0-bionic
33
LABEL title="Whitepaper" \
44
maintainer="Family Office"
55

6-
RUN apt-get update \
7-
&& apt-get upgrade -y \
8-
&& export DEBIAN_FRONTEND=noninteractive \
9-
&& apt-get -y install --no-install-recommends texlive-full graphviz gnuplot
6+
RUN apt-get update
7+
RUN apt-get upgrade -y
8+
9+
RUN export DEBIAN_FRONTEND=noninteractive
10+
11+
RUN apt-get -y install --no-install-recommends texlive-full
12+
RUN apt-get -y install --no-install-recommends graphviz
13+
RUN apt-get -y install --no-install-recommends gnuplot
14+
RUN apt-get -y install --no-install-recommends python3
15+
RUN apt-get -y install --no-install-recommends python3-pip
16+
RUN apt-get -y install --no-install-recommends zlib1g-dev
17+
RUN apt-get -y install --no-install-recommends libjpeg-dev
18+
RUN apt-get -y install --no-install-recommends build-essential libssl-dev libffi-dev python3-dev
19+
20+
RUN pip3 install ipykernel --upgrade
21+
RUN pip3 install requests
22+
RUN pip3 install wheel
23+
RUN pip3 install matplotlib
24+
RUN pip3 install pandas

0 commit comments

Comments
 (0)