File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 44
55OPENSSL=openssl-1.1.1k
66
7+ export CFLAGS=" -O0"
8+ export CXXFLAGS=" -O0"
79wget -q -O " ${OPENSSL} .tar.gz" " https://ossci-linux.s3.amazonaws.com/${OPENSSL} .tar.gz"
810tar xf " ${OPENSSL} .tar.gz"
911cd " ${OPENSSL} "
Original file line number Diff line number Diff line change @@ -67,6 +67,10 @@ FROM base as openssl
6767# (In order to have a proper SSL module, Python is compiled
6868# against a recent openssl [see env vars above], which is linked
6969# statically. We delete openssl afterwards.)
70+
71+ # Set ulimit to avoid segmentation fault due to resource limits
72+ RUN ulimit -s unlimited && ulimit -u unlimited
73+
7074ADD ./common/install_openssl-ppc64le.sh install_openssl.sh
7175RUN bash ./install_openssl.sh && rm install_openssl.sh
7276ENV SSL_CERT_FILE=/opt/_internal/certs.pem
You can’t perform that action at this time.
0 commit comments