Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/mwapl/simgrid
[simgrid.git] / tools / docker / Dockerfile.build-deps
1 # Base image: bookworm is Debian 12
2 FROM debian:bookworm
3
4 # Install the dependencies:
5 #  - of the website
6 #  - of SimGrid itself
7 RUN apt-get --allow-releaseinfo-change update && \
8     apt install -y \
9        bibclean emacs-nox org-mode elpa-ess elpa-htmlize wget unzip r-cran-ggplot2 r-cran-tidyr r-cran-dplyr libtext-bibtex-perl && \
10     apt install -y \
11        g++ gcc gfortran pybind11-dev \
12        git \
13        valgrind \
14        libboost-dev libboost-all-dev \
15        libeigen3-dev \
16        cmake \
17        python3-pip \
18        doxygen fig2dev \
19        chrpath \
20        libdw-dev libevent-dev libunwind8-dev \
21        python3-sphinx python3-breathe python3-sphinx-rtd-theme && \
22     apt clean && apt autoclean
23
24 #        linkchecker \