blob: 8500397a897abda29e534d7cdba1e92c21b87b0a (
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
|
# please follow docker best practices
# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
FROM fedora:32
LABEL maintainer="Ettus Research"
RUN dnf install -y \
boost-devel \
ccache \
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
|