X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2ad1267f6cbefcc4424910b060cc87fb39c7add6..2cfe340b9729c7ee55cf813f6a36f15dc918696b:/tools/docker/Dockerfile.unstable?ds=sidebyside diff --git a/tools/docker/Dockerfile.unstable b/tools/docker/Dockerfile.unstable index 0262d918b1..6d32dfc369 100644 --- a/tools/docker/Dockerfile.unstable +++ b/tools/docker/Dockerfile.unstable @@ -4,9 +4,9 @@ FROM debian:testing # - Install SimGrid's dependencies # - Compile and install SimGrid itself. Clean the tree. # - Remove everything that was installed, and re-install what's needed by the SimGrid libraries before the Gran Final Cleanup -RUN apt update && \ +RUN apt update && apt -y upgrade && \ apt install -y g++ gcc git valgrind default-jdk gfortran libboost-dev libboost-all-dev cmake dpkg-dev && \ - mkdir /src/ && cd /src && git clone --depth=1 https://framagit.org/simgrid/simgrid.git simgrid.git && \ + mkdir /source/ && cd /source && git clone --depth=1 https://framagit.org/simgrid/simgrid.git simgrid.git && \ cd simgrid.git && \ cmake -DCMAKE_INSTALL_PREFIX=/usr/ -Denable_documentation=OFF -Denable_java=ON -Denable_smpi=ON -Denable_compile_optimizations=ON . && \ make -j4 install && \