Skip to content

Commit 22d424d

Browse files
Update dockerfile
1 parent f32101b commit 22d424d

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

docker/Dockerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,26 @@ RUN apt-get -y install python3-h5py && \
1212
pip install networkx && \
1313
pip install pandas && \
1414
pip install tqdm && \
15+
pip install seaborn && \
1516
pip install --no-cache-dir notebook jupyterlab jupyterhub && \
1617
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*- && \
1718
pip install -U setuptools
1819

20+
# remove the fenics-mixed-dim folder to avoid confusion
21+
RUN rm -r demo/
22+
1923
# Get fenics_ii
2024
RUN git clone https://github.com/MiroK/fenics_ii.git && \
2125
cd fenics_ii && \
2226
python3 -m pip install -e . && \
2327
cd ..
2428

25-
2629
# cbc.block
2730
RUN git clone https://bitbucket.org/fenics-apps/cbc.block && \
2831
cd cbc.block && \
2932
python3 -m pip install . && \
3033
cd ..
31-
32-
33-
34+
3435
# fix decorator error by reinstalling scipy
3536
RUN pip uninstall -y scipy && pip install scipy
3637

37-
38-
RUN python3 -m pip install git+https://github.com/IngeborgGjerde/graphnics

0 commit comments

Comments
 (0)