File tree Expand file tree Collapse file tree 1 file changed +19
-4
lines changed
Expand file tree Collapse file tree 1 file changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,22 @@ FROM mcr.microsoft.com/vscode/devcontainers/base:0-bionic
33LABEL 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
You can’t perform that action at this time.
0 commit comments