Dockerfile.eNB.rocky 5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#/*
# * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
# * contributor license agreements.  See the NOTICE file distributed with
# * this work for additional information regarding copyright ownership.
# * The OpenAirInterface Software Alliance licenses this file to You under
# * the OAI Public License, Version 1.1  (the "License"); you may not use this file
# * except in compliance with the License.
# * You may obtain a copy of the License at
# *
# *      http://www.openairinterface.org/?page_id=698
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# *-------------------------------------------------------------------------------
# * For more information about the OpenAirInterface (OAI) Software Alliance:
# *      contact@openairinterface.org
# */
#---------------------------------------------------------------------
#
# Dockerfile for the Open-Air-Interface BUILD service
24
#   Valid for Rocky 9
25 26 27
#
#---------------------------------------------------------------------

28
ARG BASE_IMAGE=docker.io/rockylinux:9
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
FROM ran-base:latest AS enb-base

FROM ran-build:latest AS enb-build


#start from scratch for target executable
FROM $BASE_IMAGE as oai-enb
ENV TZ=Europe/Paris

RUN dnf update -y && \
    dnf install -y \
        lksctp-tools \
        tzdata \
        procps-ng \
        atlas \
        gdb \
        python3 \
        python3-pip \
        net-tools \
        iputils \
        iproute && \
    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

WORKDIR /opt/oai-enb/bin
COPY --from=enb-build \
57 58 59
    /oai-ran/cmake_targets/ran_build/build/lte-softmodem ./

COPY ./docker/scripts/enb_entrypoint.sh ./entrypoint.sh
60 61 62 63 64 65 66 67 68 69 70 71 72 73

COPY --from=enb-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/liboai_iqplayer.so \
    /oai-ran/cmake_targets/ran_build/build/libtelnetsrv.so \
    /oai-ran/cmake_targets/ran_build/build/libtelnetsrv_enb.so \
    /usr/local/lib/

COPY --from=enb-base \
74
    /lib64/libconfig.so.11 \
75
    /lib64/libblas.so.3 \
76
    /lib64/libcblas.so.3 \
77 78
    /lib64/liblapack.so.3 \
    /lib64/liblapacke.so.3 \
79 80 81 82 83 84 85 86 87 88 89 90 91 92
    /lib64/libboost_chrono.so.1.75.0 \
    /lib64/libboost_date_time.so.1.75.0 \
    /lib64/libboost_filesystem.so.1.75.0 \
    /lib64/libboost_program_options.so.1.75.0 \
    /lib64/libboost_serialization.so.1.75.0 \
    /lib64/libboost_thread.so.1.75.0 \
    /lib64/libboost_system.so.1.75.0 \
    /lib64/libboost_unit_test_framework.so.1.75.0 \
    /lib64/libboost_atomic.so.1.75.0 \
    /lib64/libboost_timer.so.1.75.0 \
    /lib64/libboost_regex.so.1.75.0 \
    /lib64/libicudata.so.67 \
    /lib64/libicui18n.so.67 \
    /lib64/libicuuc.so.67 \
93 94 95 96 97 98 99 100 101 102 103 104
    /lib64/


# Now we are copying from builder-image the UHD files.
COPY --from=enb-base /usr/local/bin/uhd_find_devices /usr/local/bin
COPY --from=enb-base /usr/local/lib64/libuhd.so.4.4.0 /usr/local/lib64
COPY --from=enb-base /usr/local/lib64/uhd/utils/uhd_images_downloader.py /opt/oai-enb/bin

WORKDIR /usr/local/share/uhd/rfnoc
COPY --from=enb-base /usr/local/share/uhd/rfnoc/ .

RUN /bin/bash -c "ln -s /usr/local/lib/liboai_usrpdevif.so /usr/local/lib/liboai_device.so" && \
105
    /bin/bash -c "ln -s /usr/local/lib/liboai_eth_transpro.so /usr/local/lib/liboai_transpro.so" && \
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
    ldconfig && \
    echo "ldd on lte-softmodem" && ldd /opt/oai-enb/bin/lte-softmodem && \
    echo "ldd on liboai_eth_transpro.so" && ldd /usr/local/lib/liboai_eth_transpro.so && \
    echo "ldd on librfsimulator.so" && ldd /usr/local/lib/librfsimulator.so && \
    echo "ldd on liboai_usrpdevif.so" && ldd /usr/local/lib/liboai_usrpdevif.so && \
    echo "ldd on libcoding.so" && ldd /usr/local/lib/libcoding.so && \
    echo "ldd on libparams_libconfig.so" && ldd /usr/local/lib/libparams_libconfig.so && \
    echo "ldd on libdfts.so" && ldd /usr/local/lib/libdfts.so && \
    echo "ldd on liboai_iqplayer.so" && ldd /usr/local/lib/liboai_iqplayer.so && \
    echo "ldd on libtelnetsrv.so" && ldd /usr/local/lib/libtelnetsrv.so && \
    echo "ldd on libtelnetsrv_enb.so" && ldd /usr/local/lib/libtelnetsrv_enb.so

WORKDIR /opt/oai-enb

# 2152 --> S1U, GTP/UDP
# 36412 --> S1C, SCTP/UDP
# 36422 --> X2C, SCTP/UDP
EXPOSE 2152/udp 36412/udp 36422/udp

125 126
COPY --from=enb-base /tini /tini
ENTRYPOINT ["/tini", "-v", "--", "/opt/oai-enb/bin/entrypoint.sh"]
127
CMD ["/opt/oai-enb/bin/lte-softmodem", "-O", "/opt/oai-enb/etc/enb.conf"]