File size: 2,356 Bytes
7b1962c | 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | # please follow docker best practices
# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
FROM ubuntu:22.04
LABEL maintainer="Ettus Research"
ARG PIP_INDEX_HOST
ARG PIP_INDEX_URL
# This will make apt-get install without question
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get -y upgrade && \
apt-get -y install -q \
build-essential \
ccache \
clang \
curl \
git \
sudo \
# Install formatting tools
clang-format-14 \
# Install UHD dependencies
abi-dumper \
cmake \
doxygen \
dpdk \
libboost-all-dev \
libdpdk-dev \
libgps-dev \
libgps-dev \
libudev-dev \
libusb-1.0-0-dev \
ncompress \
ninja-build \
python3-dev \
python3-docutils \
python3-mako \
python3-numpy \
python3-pip \
python3-requests \
pybind11-dev \
# gRPC baseline
libgrpc++-dev \
libprotobuf-dev \
# gRPC protobuf compiler
protobuf-compiler-grpc \
# gRPC Python runtime
python3-grpcio \
# Install deb dependencies
debootstrap \
devscripts \
pbuilder \
debhelper \
libncurses5-dev \
python3-ruamel.yaml \
pkgconf \
# Install GNURadio dependencies
python3-sphinx \
python3-lxml \
libsdl1.2-dev \
libgsl-dev \
libqwt-qt5-dev \
libqt5opengl5-dev \
libgmp3-dev \
libfftw3-dev \
swig \
gir1.2-gtk-3.0 \
libpango1.0-dev \
python3-pyqt5 \
liblog4cpp5-dev \
libzmq3-dev \
python3-ruamel.yaml \
python3-click \
python3-click-plugins \
python3-zmq \
python3-scipy \
python3-gi-cairo \
python3-pygccxml \
python3-jsonschema \
libspdlog-dev \
libsndfile1-dev \
&& \
rm -rf /var/lib/apt/lists/*
# Optionally use cached index.
RUN if [ -n "$PIP_INDEX_URL" ]; then \
python3 -m pip config --global set global.index-url $PIP_INDEX_URL && \
python3 -m pip config --global set global.trusted-host $PIP_INDEX_HOST; \
fi
RUN python3 -m pip config list
RUN python3 -m pip install --upgrade pip
|