Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
docker: new simgrid/build-deps image, and use it on gitlab-ci/circleci
[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