Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcortesortuno authored Apr 29, 2020
1 parent f1a19be commit 3c07f03
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ FROM ubuntu:18.04
# Avoid user interaction dialog
ENV DEBIAN_FRONTEND=noninteractive

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

RUN ln -s /usr/bin/python3 /usr/bin/python
Expand Down

0 comments on commit 3c07f03

Please sign in to comment.