Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Convert to C++, and call get_pid() directly.
[simgrid.git] / tools / docker / Dockerfile.build-deps
1 # Base image 
2 FROM debian:testing
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 default-jdk pybind11-dev \
12        git \
13        valgrind \
14        libboost-dev libboost-all-dev \
15        cmake \
16        python3-pip \
17        doxygen fig2dev \
18        chrpath \
19        libdw-dev libevent-dev libunwind8-dev \
20        linkchecker \
21        && \
22     pip3 install breathe 'sphinx>=1.8.0b1' sphinx_rtd_theme
23