mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
- all RAN code, CI code, configuration files, dockerfiles, in CSSL v1.0
- all deployment code (openshift, charts, ancillary files like shell
scripts), in MIT
- documentation in CC-BY-4.0
- exceptions might apply and are listed in NOTICE
- there is a new LICENSES folder with all licenses
- CONTRIBUTIONS.md has been updated accordingly
For automated changes based on OAI PL v1.1:
perl -i~ -0pe 's/\/\*.*Licensed to the OpenAirInterface.*openairinterface.org\n#?/\/*\n * SPDX-License-Identifier: LicenseRef-CSSL-1.0\n/s' **/*.{c,h,cpp}
perl -i~ -0pe 's/\/\*.*Licensed to the OpenAirInterface.*openairinterface.org\n#?/\/*\n * SPDX-License-Identifier: LicenseRef-CSSL-1.0\n/s' **/*.ts
perl -i~ -0pe 's/<!--.*Licensed to the OpenAirInterface.*openairinterface.org\n.*-->/<!-- SPDX-License-Identifier: LicenseRef-CSSL-1.0 -->/s' **/*.xml
The rest (cmake, files with missing license, cmake) manually.
106 lines
3.7 KiB
Docker
106 lines
3.7 KiB
Docker
# SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
|
|
#---------------------------------------------------------------------
|
|
#
|
|
# Dockerfile for the Open-Air-Interface BUILD service
|
|
# Valid for Ubuntu24.04
|
|
#
|
|
#---------------------------------------------------------------------
|
|
|
|
ARG UBUNTU_IMAGE=ubuntu:noble
|
|
|
|
FROM ran-base:latest AS lte-ue-base
|
|
|
|
FROM ran-build:latest AS lte-ue-build
|
|
|
|
|
|
#start from scratch for target executable
|
|
FROM ${UBUNTU_IMAGE} AS oai-lte-ue
|
|
ARG BUILD_OPTION
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
ENV TZ=Europe/Paris
|
|
|
|
RUN apt-get update && \
|
|
apt-get upgrade --yes && \
|
|
apt-get install --yes \
|
|
software-properties-common \
|
|
procps \
|
|
libsctp1 \
|
|
libboost-chrono1.83.0 \
|
|
libboost-date-time1.83.0 \
|
|
libboost-filesystem1.83.0 \
|
|
libboost-regex1.83.0 \
|
|
libboost-serialization1.83.0 \
|
|
libboost-thread1.83.0 \
|
|
libboost-system1.83.0 \
|
|
libboost-program-options1.83.0 \
|
|
tzdata \
|
|
libconfig9 \
|
|
openssl \
|
|
net-tools \
|
|
python3 \
|
|
python3-six \
|
|
python3-requests \
|
|
libpython3.12 \
|
|
libusb-1.0-0 \
|
|
iputils-ping \
|
|
iproute2 \
|
|
iperf3 \
|
|
wget && \
|
|
# Installing older version of iperf2 for feMBMS test
|
|
wget --quiet http://fr.archive.ubuntu.com/ubuntu/pool/universe/i/iperf/iperf_2.0.13+dfsg1-1build1_amd64.deb && \
|
|
dpkg -i iperf_2.0.13+dfsg1-1build1_amd64.deb && \
|
|
# iperf --version returns 1 that fails docker build
|
|
iperf --version || true && \
|
|
rm -f iperf_2.0.13+dfsg1-1build1_amd64.deb && \
|
|
apt-get remove -y wget && \
|
|
# if the --sanitize option was used to build, additional packages are required
|
|
/bin/bash -c 'if [[ "$BUILD_OPTION" = "--sanitize" ]]; then DEBIAN_FRONTEND=noninteractive apt-get install --yes \
|
|
libasan8 \
|
|
libubsan1 ; fi' && \
|
|
apt-get clean -y && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /opt/oai-lte-ue/bin
|
|
COPY --from=lte-ue-build \
|
|
/oai-ran/cmake_targets/ran_build/build/lte-uesoftmodem \
|
|
/oai-ran/cmake_targets/ran_build/build/conf2uedata \
|
|
/oai-ran/cmake_targets/ran_build/build/nvram \
|
|
/oai-ran/cmake_targets/ran_build/build/usim \
|
|
./
|
|
|
|
COPY ./docker/scripts/lte_ue_entrypoint.sh ./entrypoint.sh
|
|
COPY --from=lte-ue-build \
|
|
/oai-ran/cmake_targets/ran_build/build/liboai_eth_transpro.so \
|
|
/oai-ran/cmake_targets/ran_build/build/librfsimulator.so \
|
|
/oai-ran/cmake_targets/ran_build/build/liboai_usrpdevif.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libcoding.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libparams_libconfig.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libdfts.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libtelnetsrv.so \
|
|
/usr/local/lib/
|
|
|
|
# Now we are copying from builder-image the UHD files.
|
|
COPY --from=lte-ue-base /usr/local/bin/uhd_find_devices /usr/local/bin
|
|
COPY --from=lte-ue-base /usr/local/lib/libuhd.so.4.8.0 /usr/local/lib
|
|
COPY --from=lte-ue-base /usr/local/lib/uhd/utils/uhd_images_downloader.py /opt/oai-lte-ue/bin
|
|
|
|
RUN /bin/bash -c "ln -s /usr/local/lib/liboai_usrpdevif.so /usr/local/lib/liboai_device.so" && \
|
|
ldconfig && \
|
|
echo "---- ldd on lte-uesoftmodem ----" && \
|
|
ldd /opt/oai-lte-ue/bin/lte-uesoftmodem && \
|
|
echo "---- ldd on shared librarues ----" && \
|
|
ldd /usr/local/lib/liboai_eth_transpro.so \
|
|
/usr/local/lib/librfsimulator.so \
|
|
/usr/local/lib/liboai_usrpdevif.so \
|
|
/usr/local/lib/libcoding.so \
|
|
/usr/local/lib/libparams_libconfig.so \
|
|
/usr/local/lib/libdfts.so \
|
|
/usr/local/lib/libtelnetsrv.so \
|
|
/usr/local/lib/libuhd.so.4.8.0
|
|
|
|
WORKDIR /opt/oai-lte-ue
|
|
COPY --from=lte-ue-base /tini /tini
|
|
CMD ["/opt/oai-lte-ue/bin/lte-uesoftmodem"]
|
|
ENTRYPOINT ["/tini", "-v", "--", "/opt/oai-lte-ue/bin/entrypoint.sh"]
|