Skip to content
Snippets Groups Projects
Commit 9706de41 authored by Tim Curtis's avatar Tim Curtis Committed by Kirill Yukhin
Browse files

build: Fix static build based on Dockerfile

Found that 'openssl-1.1.0h' is EOL and its external link was removed.
Fixed static build based on Dockerfile with the new link to the external
openssl version 'openssl-1.1.1f'.

Close #4830
parent 8e7a2e11
No related branches found
No related tags found
No related merge requests found
......@@ -40,9 +40,9 @@ RUN yum -y install python-devel python-pip
RUN set -x && \
cd / && \
curl -O -L https://www.openssl.org/source/openssl-1.1.0h.tar.gz && \
tar -xvf openssl-1.1.0h.tar.gz && \
cd openssl-1.1.0h && \
curl -O -L https://www.openssl.org/source/openssl-1.1.1f.tar.gz && \
tar -xvf openssl-1.1.1f.tar.gz && \
cd openssl-1.1.1f && \
./config --libdir=lib && \
make -j && make install
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment