From 66f6c65982839b853f2b109dbb3018525393ad13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20R=C3=BCth?= Date: Mon, 2 Mar 2020 09:49:23 +0100 Subject: [PATCH 1/3] Download boost from sourceforge --- precice/Dockerfile.Ubuntu1604.home | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/precice/Dockerfile.Ubuntu1604.home b/precice/Dockerfile.Ubuntu1604.home index d35307b48..28bdafa6d 100644 --- a/precice/Dockerfile.Ubuntu1604.home +++ b/precice/Dockerfile.Ubuntu1604.home @@ -28,7 +28,7 @@ ENV Eigen3_ROOT="/eigen/eigen-3.3.7" # Installing boost from source WORKDIR /boost-build -RUN wget -nv 'https://dl.bintray.com/boostorg/release/1.65.1/source/boost_1_65_1.tar.bz2' -O - | tar xj && \ +RUN wget -nv 'https://downloads.sourceforge.net/project/boost/boost/1.65.1/boost_1_65_1.tar.bz2' -O - | tar xj && \ cd boost_1_65_1 && \ ./bootstrap.sh --with-libraries=log,thread,system,filesystem,program_options,test --prefix=/usr/local && \ ./b2 -j$(nproc) install && \ From 1437a177a70390cb9791fb28ff74546e94b6b75d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20R=C3=BCth?= Date: Mon, 2 Mar 2020 09:52:58 +0100 Subject: [PATCH 2/3] Download boost from sourceforge --- precice/Dockerfile.Ubuntu1604.package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/precice/Dockerfile.Ubuntu1604.package b/precice/Dockerfile.Ubuntu1604.package index 054dc573c..12faa6b92 100644 --- a/precice/Dockerfile.Ubuntu1604.package +++ b/precice/Dockerfile.Ubuntu1604.package @@ -28,7 +28,7 @@ ENV Eigen3_ROOT="/eigen/eigen-3.3.7" # Installing boost from source WORKDIR /boost-build -RUN wget -nv 'https://dl.bintray.com/boostorg/release/1.65.1/source/boost_1_65_1.tar.bz2' -O - | tar xj && \ +RUN wget -nv 'https://downloads.sourceforge.net/project/boost/boost/1.65.1/boost_1_65_1.tar.bz2' -O - | tar xj && \ cd boost_1_65_1 && \ ./bootstrap.sh --with-libraries=log,thread,system,filesystem,program_options,test --prefix=/usr/local && \ ./b2 -j$(nproc) install && \ From fd102cacb59e7fff21f2890e046918664e503022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20R=C3=BCth?= Date: Mon, 2 Mar 2020 09:53:28 +0100 Subject: [PATCH 3/3] Download boost from sourceforge --- precice/Dockerfile.Ubuntu1604.sudo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/precice/Dockerfile.Ubuntu1604.sudo b/precice/Dockerfile.Ubuntu1604.sudo index cb9c65ea5..b5b56dc2a 100644 --- a/precice/Dockerfile.Ubuntu1604.sudo +++ b/precice/Dockerfile.Ubuntu1604.sudo @@ -28,7 +28,7 @@ ENV Eigen3_ROOT="/eigen/eigen-3.3.7" # Installing boost from source WORKDIR /boost-build -RUN wget -nv 'https://dl.bintray.com/boostorg/release/1.65.1/source/boost_1_65_1.tar.bz2' -O - | tar xj && \ +RUN wget -nv 'https://downloads.sourceforge.net/project/boost/boost/1.65.1/boost_1_65_1.tar.bz2' -O - | tar xj && \ cd boost_1_65_1 && \ ./bootstrap.sh --with-libraries=log,thread,system,filesystem,program_options,test --prefix=/usr/local && \ ./b2 -j$(nproc) install && \