diff --git a/MaterialLib/SolidModels/MFront/CMakeLists.txt b/MaterialLib/SolidModels/MFront/CMakeLists.txt
index 3e82944b161b1fce0a6a3c38be19d1bc162b60a8..2b71aa32cecb930a5fc6c29cd42fe3f3d2d4b89f 100644
--- a/MaterialLib/SolidModels/MFront/CMakeLists.txt
+++ b/MaterialLib/SolidModels/MFront/CMakeLists.txt
@@ -38,3 +38,5 @@ target_link_libraries(MaterialLib_SolidModels_MFront
                       PUBLIC MFrontGenericInterface)
 target_compile_definitions(MaterialLib_SolidModels_MFront
                            PRIVATE OGS_USE_MFRONT)
+
+install(TARGETS MFrontGenericInterface OgsMFrontBehaviour)
diff --git a/ThirdParty/container-maker b/ThirdParty/container-maker
index a7e952f1bf9b9950c1808c098a91bb65d46db2e4..f3b23f2ac47237ee1fc2c19b09125b7a23201047 160000
--- a/ThirdParty/container-maker
+++ b/ThirdParty/container-maker
@@ -1 +1 @@
-Subproject commit a7e952f1bf9b9950c1808c098a91bb65d46db2e4
+Subproject commit f3b23f2ac47237ee1fc2c19b09125b7a23201047
diff --git a/scripts/ci/jobs/build_image.yml b/scripts/ci/jobs/build_image.yml
index 56e8c95194fea9b62213d4ee8eb61e5d68e83974..2a8bc9d03e310b734973bd266155172a464f06b3 100644
--- a/scripts/ci/jobs/build_image.yml
+++ b/scripts/ci/jobs/build_image.yml
@@ -12,13 +12,16 @@ build container images:
   script:
     - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
     - poetry run ogscm compiler.py ogs.py --build --ogs off
-      --pm system --cvode --cppcheck --docs --gcovr --tfel --ccache
+      --pm system --cvode --cppcheck --docs --gcovr --mfront --ccache
+      --version_file ../../web/data/versions.json
       --tag $CONTAINER_GCC_IMAGE --upload
     - poetry run ogscm compiler.py ogs.py --build --ogs off
       --pm system --cvode --cppcheck --docs --gcovr --gui --ccache
+      --version_file ../../web/data/versions.json
       --tag $CONTAINER_GCC_GUI_IMAGE --upload
     - poetry run ogscm compiler.py ogs.py --build --ogs off
       --compiler clang --compiler_version 9 --ccache
+      --version_file ../../web/data/versions.json
       --tag $CONTAINER_CLANG_IMAGE --upload
 
 ### global project images ###
diff --git a/scripts/ci/jobs/container.yml b/scripts/ci/jobs/container.yml
index 0ee94ee64f7127957cda058e691914f2512ba184..bb777cb4d4323912f2c8cbe594e2186f646cc6dd 100644
--- a/scripts/ci/jobs/container.yml
+++ b/scripts/ci/jobs/container.yml
@@ -19,7 +19,7 @@ container:
     - >
       poetry run ogscm compiler.py ogs.py -B -C -R --ogs ../..
       --build_args ' --progress=plain'
-      --pm system --cvode --ccache
+      --pm system --cvode --ccache --mfront
       --cmake_args ' -DOGS_CPU_ARCHITECTURE=sandybridge -DBUILD_TESTING=OFF'
       $DOCKER_TAG
     - >
diff --git a/scripts/cmake/Dependencies.cmake b/scripts/cmake/Dependencies.cmake
index dff353566d1163e7be529c9a800eb5c730f6263c..e4a64b8a09aa3f67fc47020783def34a3ebce341 100644
--- a/scripts/cmake/Dependencies.cmake
+++ b/scripts/cmake/Dependencies.cmake
@@ -115,11 +115,16 @@ if(OGS_USE_MFRONT)
     endif()
 endif()
 
+string(REPLACE "." "_" BOOST_VERSION_UNDESCORE ${ogs.minimum_version.boost})
 CPMFindPackage(
     NAME Boost
-    GITHUB_REPOSITORY Orphis/boost-cmake
     VERSION ${ogs.minimum_version.boost}
+    URL https://dl.bintray.com/boostorg/release/${ogs.minimum_version.boost}/source/boost_${BOOST_VERSION_UNDESCORE}.tar.gz
 )
+if(Boost_ADDED)
+    add_library(Boost::boost INTERFACE IMPORTED)
+    target_include_directories(Boost::boost INTERFACE "${Boost_SOURCE_DIR}")
+endif()
 
 if(OGS_USE_XDMF)
     # ZLIB is a HDF5 dependency
diff --git a/web/content/docs/devguide/advanced/singularity.md b/web/content/docs/devguide/advanced/singularity.md
index 5d39020cfa3bd8760b33b481bae48592eabc54d7..8b339677000705edb2e372fff51ae3d985f9255d 100644
--- a/web/content/docs/devguide/advanced/singularity.md
+++ b/web/content/docs/devguide/advanced/singularity.md
@@ -9,6 +9,14 @@ weight = 1036
     parent = "advanced"
 +++
 
+<div class='note'>
+
+### Important note
+
+This page describes how to **build** OGS with the help of a Linux container (for **developers**). To **run** OGS with the help of a container go to the [user guide]({{< ref "container.md" >}}) (for **developers**).
+
+</div>
+
 ## Introduction
 
 [Singularity](https://www.sylabs.io) is a Linux container runtime similar to Docker. Key advantages over Docker are
diff --git a/web/content/docs/userguide/basics/container.md b/web/content/docs/userguide/basics/container.md
index 38e094fe1cf40f3717b0ad0048783ba70c55642d..b8f7b617c0931f2b8a2605f6e4704d90b201a3b3 100644
--- a/web/content/docs/userguide/basics/container.md
+++ b/web/content/docs/userguide/basics/container.md
@@ -1,5 +1,5 @@
 +++
-date = "2018-11-14T15:00:13+01`:00"
+date = "2018-11-14T15:00:13+01:00"
 title = "Running OGS in a container"
 author = "Lars Bilke"
 weight = 10
@@ -9,6 +9,14 @@ weight = 10
     parent = "basics"
 +++
 
+<div class='note'>
+
+### Important note
+
+This page describes how to **run** OGS with the help of a Linux container (for **users**). To **build** OGS with the help of a container go to the [developer guide]({{< ref "singularity.md" >}}) (for **developers**).
+
+</div>
+
 ## With Singularity
 
 ### Prerequisites
diff --git a/web/data/versions.json b/web/data/versions.json
index f7ee6890729bb0b818d3ea253b9d3d192d331b71..dde12df8ea81025f3523aae31d7be7f3d4f87cc1 100644
--- a/web/data/versions.json
+++ b/web/data/versions.json
@@ -13,7 +13,7 @@
     "git": "2.14",
     "cmake": "3.14",
     "hugo": "0.64.1",
-    "boost": "1.67.0",
+    "boost": "1.69.0",
     "eigen": "3.3.9",
     "vtk": "8.2.0",
     "petsc": "3.11.2",