From 8900f1a6cebaf5b7e1253a664ff74095b551d330 Mon Sep 17 00:00:00 2001 From: Jun Chen Date: Tue, 5 Mar 2024 12:47:58 +0100 Subject: [PATCH] bump version in docker files --- docker/README.md | 4 ++-- docker/dockerfile.base | 4 ++-- docker/dockerfile.large | 4 ++-- docker/dockerfile.slim | 4 ++-- docker/dockerfile_dune-precice.slim | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docker/README.md b/docker/README.md index 0ed0d4c..44e3684 100644 --- a/docker/README.md +++ b/docker/README.md @@ -19,8 +19,8 @@ For more details on what is installed, please check the `Dockerfile`. The versions of the main dependencies can be manipulated when building the Docker image via the arguments with given default values -- `ARG DUNEVERSION=2.7`: DUNE version. Available in all recipes. -- `ARG DUMUXVERSION=3.4`: DuMuX version. Available in all recipes. +- `ARG DUNEVERSION=2.9`: DUNE version. Available in all recipes. +- `ARG DUMUXVERSION=3.7`: DuMuX version. Available in all recipes. - `ARG PRECICEVERSION=2.2.1`: preCICE version. Available only in "large" and "slim" recipes. - `ARG PRECICEUBUNTU=focal`: preCICE target platform (here, Ubuntu Focal Fossa). Available only in "large" recipe. diff --git a/docker/dockerfile.base b/docker/dockerfile.base index a0363d6..93551c7 100644 --- a/docker/dockerfile.base +++ b/docker/dockerfile.base @@ -13,8 +13,8 @@ ARG DUMUXINSTALLPATH=/opt/DUMUX WORKDIR ${DUMUXINSTALLPATH} # Obtain DuMuX and Dune repositories -ARG DUNEVERSION=2.8 -ARG DUMUXVERSION=3.5 +ARG DUNEVERSION=2.9 +ARG DUMUXVERSION=3.7 COPY checkout_repositories.sh . RUN bash checkout_repositories.sh ${DUNEVERSION} ${DUMUXVERSION} diff --git a/docker/dockerfile.large b/docker/dockerfile.large index 0e4c5c6..2903f38 100644 --- a/docker/dockerfile.large +++ b/docker/dockerfile.large @@ -14,8 +14,8 @@ RUN apt-get install -y apt-utils vim htop git RUN apt-get install -y openmpi-bin libopenmpi-dev git gcc g++ wget cmake sudo libboost-all-dev pkg-config python3 # Obtain DuMuX and Dune repositories -ARG DUNEVERSION=2.7 -ARG DUMUXVERSION=3.4 +ARG DUNEVERSION=2.9 +ARG DUMUXVERSION=3.7 COPY checkout_repositories.sh . RUN bash checkout_repositories.sh ${DUNEVERSION} ${DUMUXVERSION} diff --git a/docker/dockerfile.slim b/docker/dockerfile.slim index d62d736..e98c89a 100644 --- a/docker/dockerfile.slim +++ b/docker/dockerfile.slim @@ -13,8 +13,8 @@ ARG DUMUXINSTALLPATH=/opt/DUMUX WORKDIR ${DUMUXINSTALLPATH} # Obtain DuMuX and Dune repositories -ARG DUNEVERSION=2.8 -ARG DUMUXVERSION=3.5 +ARG DUNEVERSION=2.9 +ARG DUMUXVERSION=3.7 COPY checkout_repositories.sh . RUN bash checkout_repositories.sh ${DUNEVERSION} ${DUMUXVERSION} diff --git a/docker/dockerfile_dune-precice.slim b/docker/dockerfile_dune-precice.slim index e452805..005f4dd 100644 --- a/docker/dockerfile_dune-precice.slim +++ b/docker/dockerfile_dune-precice.slim @@ -13,7 +13,7 @@ ARG DUMUXINSTALLPATH=/opt/DUMUX WORKDIR ${DUMUXINSTALLPATH} # Obtain DuMuX and Dune repositories -ARG DUNEVERSION=2.8 +ARG DUNEVERSION=2.9 COPY checkout_repositories.sh . RUN bash checkout_repositories.sh ${DUNEVERSION} none