X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5e41cea3f1d670f198f312cfe398af95b9ed7b40..6cf83e2b8b91315daaf30dc22f610af68c6d672c:/tools/docker/Dockerfile.tuto-s4u diff --git a/tools/docker/Dockerfile.tuto-s4u b/tools/docker/Dockerfile.tuto-s4u index 7832a80bed..ff7ddccb57 100644 --- a/tools/docker/Dockerfile.tuto-s4u +++ b/tools/docker/Dockerfile.tuto-s4u @@ -2,7 +2,11 @@ FROM simgrid/stable # - Clone simgrid-template-s4u, as it is needed by the tutorial -RUN apt update && apt install -y pajeng r-base r-cran-ggplot2 r-cran-dplyr cmake g++ git libboost-all-dev&& \ +# - Add an empty makefile advising to run cmake before make, just in case +RUN apt update && apt install -y pajeng r-base r-cran-ggplot2 r-cran-dplyr r-cran-devtools cmake g++ git libboost-all-dev flex bison&& \ cd /source && \ git clone --depth=1 https://framagit.org/simgrid/simgrid-template-s4u.git simgrid-template-s4u.git && \ - apt autoremove -y && apt clean && apt autoclean \ No newline at end of file + printf "master-workers ping-pong:\n\t@echo \"Please run the following command before make:\";echo \" cmake .\"; exit 1" > Makefile &&\ + apt autoremove -y && apt clean && apt autoclean + +RUN Rscript -e "library(devtools); install_github('schnorr/pajengr');"