diff --git a/dockerfiles/ubuntu:20.04/Dockerfile b/dockerfiles/ubuntu:20.04/Dockerfile new file mode 100644 index 0000000..ac3e9c7 --- /dev/null +++ b/dockerfiles/ubuntu:20.04/Dockerfile @@ -0,0 +1,16 @@ +FROM ubuntu:20.04 +MAINTAINER Guillaume Anciaux + + +ENV LANG C.UTF-8 +ENV LC_ALL C.UTF-8 + +## for apt to be noninteractive +ENV DEBIAN_FRONTEND noninteractive +ENV DEBCONF_NONINTERACTIVE_SEEN true + +RUN apt-get -qq update && apt-get install -y cmake build-essential python3-dev python3-numpy libboost-dev libfftw3-dev libgsl-dev gfortran liblapack-dev libopenmpi-dev sharutils git doxygen graphviz python3-pip texlive-latex-base libmumps-dev libscotch-dev && apt -y clean && rm -rf /var/lib/apt/lists/* +RUN pip3 install sphinx breathe sphinx-rtd-theme pytest scipy xmltodict +RUN pip3 install --upgrade setuptools wheel twine +RUN apt-get -qq update && apt-get install -y xsltproc ccache bc gmsh && apt -y clean && rm -rf /var/lib/apt/lists/* +