From 0fa1b7658be07b1aa6b28a75665a641c6379bb01 Mon Sep 17 00:00:00 2001 From: Daniel Pawlik Date: Sun, 24 Nov 2024 11:18:30 +0100 Subject: [PATCH] Switch Fedora version in Dockerfile; add file as required deps --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a9be384..82db378 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM fedora:40 +FROM fedora:41 -RUN yum update -y && dnf -y groupinstall 'Development Tools' +RUN yum update -y && dnf -y group install development-tools -RUN dnf -y install vim bash-completion bzip2 gcc gcc-c++ git make ncurses-devel patch \ - rsync tar unzip wget which diffutils python2 python3 perl-base \ +RUN dnf -y install vim bash-completion file bzip2 gcc gcc-c++ git make ncurses-devel patch \ + rsync tar unzip wget which diffutils python3 perl-base \ perl-Data-Dumper perl-File-Compare perl-File-Copy perl-FindBin \ perl-Thread-Queue hostname perl-IPC-Cmd swig ccache-swig && \ dnf install -y clang llvm gcc libbpf-devel libxdp-devel xdp-tools \