Skip to content

Commit 3c07f03

Browse files
Update Dockerfile
1 parent f1a19be commit 3c07f03

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ FROM ubuntu:18.04
33
# Avoid user interaction dialog
44
ENV DEBIAN_FRONTEND=noninteractive
55

6-
RUN apt -y update
7-
RUN apt install -y git python3 python3-pip gcc psutils cmake wget make
6+
RUN apt -y update
7+
# Binder fails with Cython from pip -> use apt cython3
8+
RUN apt install -y git python3 python3-pip gcc psutils cmake wget make cython3
89
RUN apt install -y gfortran libblas-dev liblapack-dev python3-tk sudo fonts-lato
910
RUN pip3 install pip -U
10-
RUN pip3 install cython matplotlib pytest scipy psutil pyvtk ipywidgets -U
11+
RUN pip3 install matplotlib pytest scipy psutil pyvtk ipywidgets -U
1112
RUN pip3 install --no-cache-dir notebook
1213

1314
RUN ln -s /usr/bin/python3 /usr/bin/python

0 commit comments

Comments
 (0)