Skip to content

Commit

Permalink
fix(fedora): add support for Fedora 39 gcc-13.2 (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
iurly authored Nov 4, 2023
1 parent 3745450 commit 2748321
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Dockerfile.centos-gcc13.2-bpf
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM fedora:39

RUN yum -y install \
wget \
git \
gcc \
gcc-c++ \
autoconf \
bison \
flex \
make \
cmake \
elfutils-devel \
findutils \
kmod \
clang \
llvm \
python-lxml && yum clean all

ADD builder-entrypoint.sh /
WORKDIR /build/probe
ENTRYPOINT [ "/builder-entrypoint.sh" ]

0 comments on commit 2748321

Please sign in to comment.