Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Refactoring profiles to use generic callbacks
[simgrid.git] / tools / docker / Dockerfile.tuto-smpi
1 # Base image
2 FROM simgrid/stable
3
4 # https://stackoverflow.com/questions/35134713/disable-cache-for-specific-run-commands
5 ADD "http://deb.debian.org/debian/dists/testing/Release" skipcache
6 RUN apt update && apt -y upgrade
7
8 # - Clone simgrid-template-smpi, as it is needed by the tutorial
9 RUN apt install -y python3 pajeng libssl-dev r-base r-cran-devtools r-cran-tidyverse build-essential g++ gfortran git libboost-dev libeigen3-dev cmake flex bison libfmt-dev && \
10     cd /source && \
11     git clone --depth=1 https://framagit.org/simgrid/simgrid-template-smpi.git simgrid-template-smpi.git && \
12     apt autoremove -y && apt clean && apt autoclean
13
14 RUN Rscript -e "library(devtools); install_github('schnorr/pajengr');"
15
16 CMD ["/bin/bash"]