blob: be2a92cd5ccab61f6e5837beda24ec5b4ac9d53a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# please follow docker best practices
# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
FROM fedora:34
LABEL maintainer="Ettus Research"
RUN dnf install -y \
boost-devel \
ccache \
clang \
cmake \
doxygen \
dpdk \
dpdk-devel \
dpdk-tools \
gcc \
gcc-c++ \
git \
libusb1-devel \
make \
ncompress \
ninja-build \
python3-devel \
python3-docutils \
python3-mako \
python3-numpy \
python3-pip \
python3-requests \
redhat-rpm-config \
rpm-build \
rpm-devel \
rsync \
tar \
xz \
&& \
dnf clean all
|