We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bafa67c commit 7b3ea7eCopy full SHA for 7b3ea7e
1 file changed
bin/spc-gnu-docker
@@ -72,7 +72,10 @@ RUN yum update -y && \
72
yum install -y devtoolset-10-gcc-*
73
RUN echo "source scl_source enable devtoolset-10" >> /etc/bashrc
74
RUN source /etc/bashrc
75
-RUN yum install -y which patchelf
+RUN yum install -y which
76
+
77
+RUN curl -o patchelf.tgz https://github.com/NixOS/patchelf/releases/download/0.18.0/patchelf-0.18.0-$BASE_ARCH.tar.gz && \
78
+ tar -xzf patchelf.tgz -C /usr
79
80
RUN curl -o cmake.tgz -fsSL https://github.com/Kitware/CMake/releases/download/v3.31.4/cmake-3.31.4-linux-$BASE_ARCH.tar.gz && \
81
mkdir /cmake && \
0 commit comments