File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3838 tag : ubuntu-24.04-4.0
3939 - path : ci/ci-ubuntu-24.04-4.0-emscripten
4040 tag : ubuntu-24.04-4.0-emscripten
41+ - path : ci/ci-ubuntu-26.04-4.0
42+ tag : ubuntu-26.04-4.0
4143 - path : ci/ci-ubuntu-20.04-3.9
4244 tag : ubuntu-20.04-3.9
4345 - path : ci/ci-ubuntu-22.04-3.9
Original file line number Diff line number Diff line change 1+ ARG UBUNTU_VERSION=26.04
2+ ARG APT_INSTALL_COMMAND="apt-get install -qy --no-install-recommends"
3+
4+
5+ FROM ubuntu:${UBUNTU_VERSION}
6+ ARG APT_INSTALL_COMMAND
7+
8+ ENV DEBIAN_FRONTEND=noninteractive
9+ ENV LANG=C.UTF-8 \
10+ LC_ALL=C.UTF-8 \
11+ PKG_CONFIG=pkg-config \
12+ CC=gcc \
13+ CXX=g++
14+
15+ RUN apt-get update -q \
16+ && apt-get -y upgrade \
17+ && ${APT_INSTALL_COMMAND} \
18+ bash \
19+ build-essential \
20+ ca-certificates \
21+ ccache \
22+ cmake \
23+ file \
24+ git \
25+ locales \
26+ make \
27+ ninja-build \
28+ pkg-config \
29+ wget \
30+ cppzmq-dev \
31+ libboost-system-dev \
32+ libbrotli-dev \
33+ libcurl4-openssl-dev \
34+ libcpp-httplib-dev \
35+ libfftw3-dev \
36+ libgtest-dev \
37+ libssl-dev \
38+ libtbb-dev \
39+ nlohmann-json3-dev \
40+ python3 \
41+ python3-dev \
42+ python3-numpy \
43+ pybind11-dev \
44+ libcli11-dev \
45+ librtaudio-dev \
46+ libportaudio2 \
47+ libsoapysdr-dev \
48+ soapysdr-module-hackrf \
49+ soapysdr-tools \
50+ gcc \
51+ g++ \
52+ clang \
53+ libclang-rt-dev \
54+ libc++-dev \
55+ libc++abi-dev \
56+ libunwind-dev \
57+ && apt-get clean \
58+ && apt-get autoclean \
59+ && rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments