diff --git a/dockerfiles/debian:bullseye/Dockerfile b/dockerfiles/debian:bullseye/Dockerfile index 6ea6253..eb736bd 100644 --- a/dockerfiles/debian:bullseye/Dockerfile +++ b/dockerfiles/debian:bullseye/Dockerfile @@ -1,15 +1,15 @@ FROM debian:bullseye 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 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 libcgal-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/* diff --git a/dockerfiles/ubuntu:19.10/Dockerfile b/dockerfiles/ubuntu:19.10/Dockerfile index 657c2c1..7c9ccaf 100644 --- a/dockerfiles/ubuntu:19.10/Dockerfile +++ b/dockerfiles/ubuntu:19.10/Dockerfile @@ -1,16 +1,16 @@ FROM ubuntu:19.10 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 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 libcgal-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/* diff --git a/dockerfiles/ubuntu:20.04/Dockerfile b/dockerfiles/ubuntu:20.04/Dockerfile index ac3e9c7..d4c8aca 100644 --- a/dockerfiles/ubuntu:20.04/Dockerfile +++ b/dockerfiles/ubuntu:20.04/Dockerfile @@ -1,16 +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 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 libcgal-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/*