Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix some more problems in the doc + cosmetics + extend python a bit
[simgrid.git] / tools / docker / Dockerfile.tuto-s4u
1 # Base image
2 FROM simgrid/unstable
3
4 RUN apt update && apt -y upgrade
5
6 # - Clone simgrid-template-s4u, as it is needed by the tutorial
7 # - Add an empty makefile advising to run cmake before make, just in case
8 RUN apt install -y python-is-python3 pajeng r-base r-cran-tidyverse r-cran-devtools cmake g++ git libboost-dev flex bison libfmt-dev && \
9     cd /source && \
10     git clone --depth=1 https://framagit.org/simgrid/simgrid-template-s4u.git simgrid-template-s4u.git && \
11     printf "master-workers ping-pong:\n\t@echo \"Please run the following command before make:\";echo \"    cmake .\"; exit 1" > Makefile && \
12     apt autoremove -y && apt clean && apt autoclean
13
14 RUN Rscript -e "library(devtools); install_github('schnorr/pajengr');"
15
16 CMD ["/bin/bash"]