Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions static-builder-gnu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,13 @@ RUN curl -o cmake.tar.gz -fsSL https://github.com/Kitware/CMake/releases/downloa
tar -xzf cmake.tar.gz -C /cmake --strip-components 1 && \
rm cmake.tar.gz

# install patchelf
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 && \
Comment thread
henderkes marked this conversation as resolved.
Outdated
mkdir -p /patchelf && \
tar -xzf patchelf.tar.gz -C /patchelf --strip-components=1 && \
cp /patchelf/bin/patchelf /usr/bin/ && \
rm patchelf.tar.gz

# install build essentials
RUN yum install -y \
perl \
Expand Down