From 388f961396e2927ca7d8475302ef4c6ff628da0f Mon Sep 17 00:00:00 2001 From: tobtoht Date: Wed, 5 May 2021 02:05:57 +0200 Subject: [PATCH] Dockerfile: fix boost link --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ad2090..52f8bac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -262,10 +262,10 @@ RUN git clone -b release-64-2 --depth 1 https://github.com/unicode-org/icu && \ make -j$THREADS install && \ rm -rf $(pwd) -RUN wget https://dl.bintray.com/boostorg/release/1.73.0/source/boost_1_73_0.tar.gz && \ - echo "9995e192e68528793755692917f9eb6422f3052a53c5e13ba278a228af6c7acf boost_1_73_0.tar.gz" | sha256sum -c && \ - tar -xzf boost_1_73_0.tar.gz && \ - rm boost_1_73_0.tar.gz && \ +RUN wget https://downloads.sourceforge.net/project/boost/boost/1.73.0/boost_1_73_0.tar.bz2 && \ + echo "4eb3b8d442b426dc35346235c8733b5ae35ba431690e38c6a8263dce9fcbb402 boost_1_73_0.tar.bz2" | sha256sum -c && \ + tar -xvf boost_1_73_0.tar.bz2 && \ + rm boost_1_73_0.tar.bz2 && \ cd boost_1_73_0 && \ ./bootstrap.sh && \ ./b2 --with-atomic --with-system --with-filesystem --with-thread --with-date_time --with-chrono --with-regex --with-serialization --with-program_options --with-locale variant=release link=static runtime-link=static cflags="${CFLAGS}" cxxflags="${CXXFLAGS}" install -a --prefix=/usr && \