X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/911626c0ba5808798ab504a57ddea362d7746a5e..d9a39dd49d59d7ef3a66727056ab3725e1ebcefc:/tools/docker/Dockerfile.build-deps diff --git a/tools/docker/Dockerfile.build-deps b/tools/docker/Dockerfile.build-deps index b453fd9500..53f36c031a 100644 --- a/tools/docker/Dockerfile.build-deps +++ b/tools/docker/Dockerfile.build-deps @@ -1,8 +1,12 @@ -# Base image +# Base image FROM debian:testing -# - 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 \ + 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 default-jdk pybind11-dev \ git \ @@ -13,7 +17,6 @@ RUN apt update && \ doxygen fig2dev \ chrpath \ libdw-dev libevent-dev libunwind8-dev \ - linkchecker \ - && \ - pip3 install breathe 'sphinx>=1.8.0b1' sphinx_rtd_theme - \ No newline at end of file + python3-sphinx python3-breathe python3-sphinx-rtd-theme + +# linkchecker \