diff --git a/Dockerfile.android b/Dockerfile.android index 8bd064b3..f4fe72bf 100644 --- a/Dockerfile.android +++ b/Dockerfile.android @@ -119,7 +119,7 @@ RUN wget -q https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION_D ARG OPENSSL_VERSION=1.1.1u ARG OPENSSL_HASH=e2f8d84b523eecd06c7be7626830370300fbcc15386bf5142d72758f6963ebc6 -RUN wget -q https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz \ +RUN wget -q https://www.openssl.org/source/old/1.1.1/openssl-${OPENSSL_VERSION}.tar.gz \ && echo "${OPENSSL_HASH} openssl-${OPENSSL_VERSION}.tar.gz" | sha256sum -c \ && tar -xzf openssl-${OPENSSL_VERSION}.tar.gz \ && rm openssl-${OPENSSL_VERSION}.tar.gz \ diff --git a/Dockerfile.linux b/Dockerfile.linux index bc1fc81f..5344b1b4 100644 --- a/Dockerfile.linux +++ b/Dockerfile.linux @@ -165,7 +165,7 @@ RUN wget https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_ ./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 && \ rm -rf $(pwd) -RUN wget https://www.openssl.org/source/openssl-1.1.1u.tar.gz && \ +RUN wget https://www.openssl.org/source/old/1.1.1/openssl-1.1.1u.tar.gz && \ echo "e2f8d84b523eecd06c7be7626830370300fbcc15386bf5142d72758f6963ebc6 openssl-1.1.1u.tar.gz" | sha256sum -c && \ tar -xzf openssl-1.1.1u.tar.gz && \ rm openssl-1.1.1u.tar.gz && \