mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-09 20:39:58 +00:00
Dockerfile.windows: fix OpenSSL version
This commit is contained in:
parent
a205b3000a
commit
ebda82f995
1 changed files with 5 additions and 5 deletions
|
@ -122,11 +122,11 @@ RUN wget https://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.16.tar.gz && \
|
||||||
rm -rf $(pwd)
|
rm -rf $(pwd)
|
||||||
|
|
||||||
# OpenSSL -> Tor
|
# OpenSSL -> Tor
|
||||||
RUN wget https://www.openssl.org/source/openssl-1.1.1.k.tar.gz && \
|
RUN wget https://www.openssl.org/source/openssl-1.1.1k.tar.gz && \
|
||||||
echo "892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5 openssl-1.1.1.k.tar.gz" | sha256sum -c && \
|
echo "892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5 openssl-1.1.1k.tar.gz" | sha256sum -c && \
|
||||||
tar -xzf openssl-1.1.1.k.tar.gz && \
|
tar -xzf openssl-1.1.1k.tar.gz && \
|
||||||
rm openssl-1.1.1.k.tar.gz && \
|
rm openssl-1.1.1k.tar.gz && \
|
||||||
cd openssl-1.1.1.k && \
|
cd openssl-1.1.1k && \
|
||||||
./Configure mingw64 no-shared no-dso --cross-compile-prefix=x86_64-w64-mingw32- --prefix=/usr/local/openssl && \
|
./Configure mingw64 no-shared no-dso --cross-compile-prefix=x86_64-w64-mingw32- --prefix=/usr/local/openssl && \
|
||||||
make -j$THREADS && \
|
make -j$THREADS && \
|
||||||
make -j$THREADS install_sw && \
|
make -j$THREADS install_sw && \
|
||||||
|
|
Loading…
Reference in a new issue