# OpenSSL: Required for CMake, Qt 5.15.2, libwallet, Tor
ENV OPENSSL_ROOT_DIR=/usr/local/openssl/
-RUN git clone -b OpenSSL_1_1_1l --depth 1 https://github.com/openssl/openssl.git && \
+RUN git clone -b OpenSSL_1_1_1m --depth 1 https://github.com/openssl/openssl.git && \
cd openssl && \
- git reset --hard fb047ebc87b18bdc4cf9ddee9ee1f5ed93e56aff && \
+ git reset --hard ac3cef223a4c61d6bee34527b6d4c8c6432494a7 && \
./config no-shared no-dso --prefix=/usr/local/openssl && \
make -j$THREADS && \
make -j$THREADS install_sw && \
rm -rf $(pwd)
# OpenSSL -> Tor
-RUN wget https://www.openssl.org/source/openssl-1.1.1l.tar.gz && \
- echo "0b7a3e5e59c34827fe0c3a74b7ec8baef302b98fa80088d7f9153aa16fa76bd1 openssl-1.1.1l.tar.gz" | sha256sum -c && \
+RUN wget https://www.openssl.org/source/openssl-1.1.1m.tar.gz && \
+ echo "f89199be8b23ca45fc7cb9f1d8d3ee67312318286ad030f5316aca6462db6c96 openssl-1.1.1m.tar.gz" | sha256sum -c && \
tar -xzf openssl-1.1.1l.tar.gz && \
rm openssl-1.1.1l.tar.gz && \
cd openssl-1.1.1l && \