From: tobtoht Date: Sat, 2 Jul 2022 19:33:45 +0000 (+0200) Subject: Update OpenSSL to 1.1.1p X-Git-Url: https://git.nutra.tk/v2?a=commitdiff_plain;h=fce18fdb27a81cbab6d8bf32bbe2e88d59b0eaeb;p=gamesguru%2Ffeather.git Update OpenSSL to 1.1.1p --- diff --git a/Dockerfile.linux b/Dockerfile.linux index 02ad2d45..8d00f4ed 100644 --- a/Dockerfile.linux +++ b/Dockerfile.linux @@ -27,9 +27,9 @@ RUN bash verify-packages.sh && \ # OpenSSL: Required for CMake, Qt 5.15, libwallet, Tor ENV OPENSSL_ROOT_DIR=/usr/local/openssl/ -RUN git clone -b OpenSSL_1_1_1m --depth 1 https://github.com/openssl/openssl.git && \ +RUN git clone -b OpenSSL_1_1_1p --depth 1 https://github.com/openssl/openssl.git && \ cd openssl && \ - git reset --hard ac3cef223a4c61d6bee34527b6d4c8c6432494a7 && \ + git reset --hard 8aaca20cf9996257d1ce2e6f4d3059b3698dde3d && \ ./config no-shared no-dso --prefix=/usr/local/openssl && \ make -j$THREADS && \ make -j$THREADS install_sw && \