Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
904e240ad03e03672028a74047c75da94c77c4c1
[simgrid.git] / tools / docker / Dockerfile.build-deps
1 # Base image 
2 FROM debian:testing
3
4 # - Install SimGrid's dependencies
5 RUN apt-get --allow-releaseinfo-change update && \
6     apt install -y \
7        g++ gcc gfortran default-jdk pybind11-dev \
8        git \
9        valgrind \
10        libboost-dev libboost-all-dev \
11        cmake \
12        python3-pip \
13        doxygen fig2dev \
14        chrpath \
15        libdw-dev libevent-dev libunwind8-dev \
16        linkchecker \
17        && \
18     pip3 install breathe 'sphinx>=1.8.0b1' sphinx_rtd_theme
19