Skip to content

Commit 7b3ea7e

Browse files
committed
fix installing patchelf
1 parent bafa67c commit 7b3ea7e

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

bin/spc-gnu-docker

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@ RUN yum update -y && \
7272
yum install -y devtoolset-10-gcc-*
7373
RUN echo "source scl_source enable devtoolset-10" >> /etc/bashrc
7474
RUN source /etc/bashrc
75-
RUN yum install -y which patchelf
75+
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
7679
7780
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 && \
7881
mkdir /cmake && \

0 commit comments

Comments
 (0)