X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1ba3b199ce47dca5644315bf6009a795d3816ffd..a0c8da3bbcebc9266ce49ee6e48c2b1d52b4a5f8:/docs/source/tuto_network_calibration/Dockerfile diff --git a/docs/source/tuto_network_calibration/Dockerfile b/docs/source/tuto_network_calibration/Dockerfile index 5a90527f27..105aa7df81 100644 --- a/docs/source/tuto_network_calibration/Dockerfile +++ b/docs/source/tuto_network_calibration/Dockerfile @@ -15,7 +15,7 @@ RUN printf '%s\n' \ r-cran-dplyr \ r-cran-irkernel \ r-cran-quantreg \ -# simgrid dependencies +# SimGrid dependencies g++ \ gcc \ git \ @@ -23,6 +23,7 @@ RUN printf '%s\n' \ gfortran \ libboost-dev \ libboost-all-dev \ + libeigen3-dev \ cmake \ dpkg-dev \ # misc tools @@ -52,8 +53,8 @@ RUN pip install --no-cache-dir --no-dependencies \ descartes==1.1.0 # R package not available at debian's cran -RUN R -e "install.packages('remotes', dependencies=TRUE, repos='http://cran.rstudio.com/')" -RUN R -e "require(remotes); install_version('Ckmeans.1d.dp','4.3.3', dependencies=TRUE, repos='http://cran.rstudio.com/')" +RUN R -e "install.packages('remotes', dependencies=TRUE, repos='http://cran.rstudio.com/')" && \ + R -e "require(remotes); install_version('Ckmeans.1d.dp','4.3.3', dependencies=TRUE, repos='http://cran.rstudio.com/')" # python jupyterlab packages RUN pip install --no-cache-dir --upgrade pip && \ @@ -62,7 +63,7 @@ RUN pip install --no-cache-dir --upgrade pip && \ papermill==2.3.3 \ ipywidgets==7.6.5 -# simgrid +# SimGrid RUN mkdir -p /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_smpi=ON -Denable_compile_optimizations=ON . && \