Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
3a296f3311894f69e0c07d8693846ba3e0f11d25
[simgrid.git] / tools / docker / Dockerfile.build-deps
1 # Base image 
2 FROM debian:testing
3
4 # - Install SimGrid's dependencies
5 RUN apt update && \
6     apt install -y \
7        g++ gcc gfortran default-jdk \
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        && \
17     pip3 install breathe javasphinx sphinx>=1.8.0b1 sphinx_rtd_theme
18