Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
022b01e1b5f590c222d622413b4911b09e303608
[simgrid.git] / tools / docker / Dockerfile.tuto-s4u
1 # Base image 
2 FROM simgrid/stable
3
4 # - Clone simgrid-template-s4u, as it is needed by the tutorial
5 # - Add an empty makefile advising to run cmake before make, just in case
6 RUN apt update && apt install -y pajeng r-base r-cran-ggplot2 r-cran-dplyr cmake g++ git libboost-all-dev&& \
7     cd /source && \
8     git clone --depth=1 https://framagit.org/simgrid/simgrid-template-s4u.git simgrid-template-s4u.git && \
9     printf "master-workers ping-pong:\n\t@echo \"Please run the following command before make:\";echo \"    cmake .\"; exit 1" > Makefile &&\
10     apt autoremove -y && apt clean && apt autoclean