Skip to content

Commit

Permalink
create symlinks for ssl libs (#52)
Browse files Browse the repository at this point in the history
build was missing libssl.1.1.so and libcrypto.1.1.so symlinks needed by the executable itself, because python is now explicitly build with OpenSSL 1.1.1
  • Loading branch information
antirotor authored Sep 19, 2023
1 parent fde75f5 commit 75b5858
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile.centos7
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,7 @@ RUN source $HOME/.bashrc \
RUN cp /usr/lib64/libffi* ./build/output/lib \
&& cp /usr/lib64/openssl11/libssl* ./build/output/lib \
&& cp /usr/lib64/openssl11/libcrypto* ./build/output/lib \
&& ln -sr ./build/output/lib/libssl.so ./build/output/lib/libssl.1.1.so \
&& ln -sr ./build/output/lib/libcrypto.so ./build/output/lib/libcrypto.1.1.so \
&& cp /root/.pyenv/versions/${PYTHON_VERSION}/lib/libpython* ./build/output/lib \
&& cp /usr/lib64/libxcb* ./build/output/vendor/python/PySide2/Qt/lib

0 comments on commit 75b5858

Please sign in to comment.