File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -53,19 +53,13 @@ RUN apt-get update && \
5353 echo "Skipping linux-headers installation as it is not critical") && \
5454 apt-get clean && rm -rf /var/lib/apt/lists/*
5555
56+ RUN apt-get install -y gcc-10 g++-10
57+
5658# Confirm git installation and add safe.directory
5759RUN git --version || (echo "Git installation failed!" && exit 1)
5860RUN git config --global --add safe.directory "*"
5961
60- # OpenSSL setup to ensure Python has SSL support
61- FROM base as openssl
62- # Set ulimit to avoid segmentation faults due to resource limits
63- RUN ulimit -s unlimited
64-
65- ADD ./common/install_openssl-ppc64le.sh install_openssl.sh
66- RUN export CFLAGS="-O0" && \
67- bash ./install_openssl.sh && rm install_openssl.sh
68- ENV SSL_CERT_FILE=/opt/_internal/certs.pem
62+ RUN apt-get install -y openssl
6963
7064# EPEL for cmake
7165FROM base as patchelf
You can’t perform that action at this time.
0 commit comments