mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
libatomic is required by DPDK 24.11.4 Signed-off-by: Teodora Vladić <teodora.vladic@openairinterface.org>
113 lines
3.7 KiB
Docker
113 lines
3.7 KiB
Docker
# SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
|
|
#---------------------------------------------------------------------
|
|
#
|
|
# Dockerfile for the Open-Air-Interface 7.2 Fronthaul
|
|
# Valid for UBI9
|
|
#
|
|
#---------------------------------------------------------------------
|
|
|
|
FROM ran-base:latest AS gnb-base
|
|
|
|
FROM ran-build-fhi72:latest AS gnb-build
|
|
|
|
#start from scratch for target executable
|
|
FROM registry.redhat.io/ubi9/ubi:latest AS oai-gnb-fhi72
|
|
ENV TZ=Europe/Paris
|
|
|
|
# Install EPEL for RHEL9
|
|
RUN dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
|
|
|
|
# Copy the entitlements
|
|
COPY ./etc-pki-entitlement /etc/pki/entitlement
|
|
|
|
RUN rm -f /etc/rhsm-host && \
|
|
subscription-manager repos --enable codeready-builder-for-rhel-9-x86_64-rpms && \
|
|
dnf update -y && \
|
|
cat /etc/os-release && \
|
|
dnf install -y \
|
|
procps-ng \
|
|
libXpm \
|
|
libX11 \
|
|
lksctp-tools \
|
|
xz \
|
|
numactl-libs \
|
|
numactl-devel \
|
|
pkg-config \
|
|
pciutils \
|
|
tzdata \
|
|
gdb \
|
|
python3 \
|
|
python3-pip \
|
|
net-tools \
|
|
iputils \
|
|
libatomic \
|
|
yaml-cpp-devel && \
|
|
pip3 install six && \
|
|
pip3 install requests && \
|
|
echo "/usr/local/lib" > /etc/ld.so.conf.d/local-lib.conf && \
|
|
echo "/usr/local/lib64" >> /etc/ld.so.conf.d/local-lib.conf && \
|
|
subscription-manager repos --disable codeready-builder-for-rhel-9-x86_64-rpms && \
|
|
rm -rf /etc/pki/entitlement
|
|
|
|
WORKDIR /opt/oai-gnb/bin
|
|
COPY --from=gnb-build \
|
|
/oai-ran/cmake_targets/ran_build/build/nr-softmodem ./
|
|
COPY ./docker/scripts/gnb_entrypoint.sh ./entrypoint.sh
|
|
COPY ./docker/scripts/check-prach-io.sh ./check-prach-io.sh
|
|
|
|
COPY --from=gnb-build \
|
|
/oai-ran/cmake_targets/ran_build/build/librfsimulator.so \
|
|
/oai-ran/cmake_targets/ran_build/build/liboran_fhlib_5g.so \
|
|
/oai-ran/cmake_targets/ran_build/build/liboai_transpro.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/libldpc*.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libtelnetsrv.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libtelnetsrv_ci.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libparams_yaml.so \
|
|
/usr/local/lib/
|
|
|
|
## Libxran library
|
|
COPY --from=gnb-build \
|
|
/opt/phy/fhi_lib/lib/build/libxran.so \
|
|
/opt/phy/fhi_lib/lib/build/
|
|
|
|
## Copy all DPDK libraries as liboran_fhlib_5g.so require most of them
|
|
COPY --from=gnb-build /usr/local/lib64/ /usr/local/lib64/
|
|
|
|
## Copy E2 SM models
|
|
COPY --from=gnb-build /usr/local/lib64/flexric /usr/local/lib64/flexric
|
|
|
|
# Copying file for configuration module
|
|
COPY --from=gnb-base \
|
|
/lib64/libconfig.so.11 \
|
|
/lib64/libforms.so.2 \
|
|
/lib64/libicudata.so.67 \
|
|
/lib64/libicui18n.so.67 \
|
|
/lib64/libicuuc.so.67 \
|
|
/lib64/
|
|
|
|
RUN ldconfig && \
|
|
echo "---- ldd on executable nr-softmodem ----" && \
|
|
ldd /opt/oai-gnb/bin/nr-softmodem && \
|
|
echo "---- ldd on shared libraries ----" && \
|
|
ldd /usr/local/lib/librfsimulator.so \
|
|
/usr/local/lib/liboran_fhlib_5g.so \
|
|
/usr/local/lib/liboai_transpro.so \
|
|
/usr/local/lib/libcoding.so \
|
|
/usr/local/lib/libparams_libconfig.so \
|
|
/usr/local/lib/libdfts.so \
|
|
/usr/local/lib/libldpc*.so \
|
|
/usr/local/lib/libtelnetsrv.so \
|
|
/usr/local/lib/libtelnetsrv_ci.so \
|
|
/opt/phy/fhi_lib/lib/build/libxran.so
|
|
|
|
WORKDIR /opt/oai-gnb
|
|
|
|
COPY --from=gnb-base /usr/local/bin/yq /usr/local/bin/yq
|
|
COPY --from=gnb-base /tini /tini
|
|
ENTRYPOINT ["/tini", "-v", "--", "/opt/oai-gnb/bin/entrypoint.sh"]
|
|
CMD ["/opt/oai-gnb/bin/nr-softmodem"]
|