X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0ce58986d4fed13a128a5e251c23d339a0d2642a..206d815a5fa8cea6ab00e40b1736d2a4bf2c50b7:/tools/docker/Dockerfile.build-deps diff --git a/tools/docker/Dockerfile.build-deps b/tools/docker/Dockerfile.build-deps index 4e76b830e1..8fdaa14d53 100644 --- a/tools/docker/Dockerfile.build-deps +++ b/tools/docker/Dockerfile.build-deps @@ -1,18 +1,24 @@ -# Base image -FROM debian:testing +# Base image +FROM debian:11 -# - Install SimGrid's dependencies -RUN apt update && \ +# Install the dependencies: +# - of the website +# - of SimGrid itself +RUN apt-get --allow-releaseinfo-change update && \ apt install -y \ - g++ gcc gfortran default-jdk pybind11-dev \ + bibclean emacs-nox org-mode elpa-ess elpa-htmlize wget unzip r-cran-ggplot2 r-cran-tidyr r-cran-dplyr libtext-bibtex-perl && \ + apt install -y \ + g++ gcc gfortran pybind11-dev \ git \ valgrind \ libboost-dev libboost-all-dev \ + libeigen3-dev \ cmake \ python3-pip \ doxygen fig2dev \ chrpath \ libdw-dev libevent-dev libunwind8-dev \ - && \ - pip3 install breathe javasphinx sphinx>=1.8.0b1 sphinx_rtd_theme - \ No newline at end of file + python3-sphinx python3-breathe python3-sphinx-rtd-theme && \ + apt clean && apt autoclean + +# linkchecker \