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 7668a27 commit f8ece4cCopy full SHA for f8ece4c
static-builder-gnu.Dockerfile
@@ -68,6 +68,13 @@ RUN curl -o cmake.tar.gz -fsSL https://github.com/Kitware/CMake/releases/downloa
68
tar -xzf cmake.tar.gz -C /cmake --strip-components 1 && \
69
rm cmake.tar.gz
70
71
+# install patchelf
72
+RUN curl -fsSL -o patchelf.tar.gz https://github.com/NixOS/patchelf/releases/download/0.18.0/patchelf-0.18.0-$(uname -m).tar.gz && \
73
+ mkdir -p /patchelf && \
74
+ tar -xzf patchelf.tar.gz -C /patchelf --strip-components=1 && \
75
+ cp /patchelf/bin/patchelf /usr/bin/ && \
76
+ rm patchelf.tar.gz
77
+
78
# install build essentials
79
RUN yum install -y \
80
perl \
0 commit comments