1# Copyright (c) PLUMgrid, Inc. 2# Licensed under the Apache License, Version 2.0 (the "License") 3 4FROM fedora:34 5 6MAINTAINER Dave Marchevsky <davemarchevsky@fb.com> 7 8RUN dnf -y install \ 9 bison \ 10 cmake \ 11 flex \ 12 gcc \ 13 gcc-c++ \ 14 git \ 15 libxml2-devel \ 16 make \ 17 rpm-build \ 18 wget \ 19 zlib-devel \ 20 llvm \ 21 llvm-devel \ 22 clang-devel \ 23 elfutils-debuginfod-client-devel \ 24# elfutils-libelf-devel-static \ 25 elfutils-libelf-devel \ 26 luajit \ 27 luajit-devel \ 28 python3-devel \ 29 libstdc++ \ 30 libstdc++-devel 31 32RUN dnf -y install \ 33 python3 \ 34 python3-pip 35 36RUN dnf -y install \ 37 procps \ 38 iputils \ 39 net-tools \ 40 hostname \ 41 iproute \ 42 bpftool 43 44RUN pip3 install pyroute2==0.5.18 netaddr==0.8.0 dnslib==0.9.14 cachetools==3.1.1 45