Dockerfile.lteRU.rhel9 3.64 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 RHEL9
25 26 27
#
#---------------------------------------------------------------------

28
FROM ran-base:latest AS ru-base
29

30
FROM ran-build:latest AS ru-build
31 32 33


#start from scratch for target executable
34
FROM registry.access.redhat.com/ubi9/ubi:latest as oai-lte-ru
35 36
ENV TZ=Europe/Paris

37
RUN dnf update -y && \
38
    dnf install -y \
39
        tzdata \
40
        procps-ng \
41
        atlas \
42
        gdb \
43 44
        python3 \
        python3-pip \
45 46 47
        net-tools \
        iputils \
        iproute && \
48 49
    pip3 install six && \
    pip3 install requests && \
50 51 52 53
    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-lte-ru/bin
54
COPY --from=ru-build \
55 56
    /oai-ran/cmake_targets/ran_build/build/oairu ./
COPY ./docker/scripts/lte_ru_entrypoint.sh ./entrypoint.sh
57

58
COPY --from=ru-build \
59 60 61 62
    /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/libparams_libconfig.so \
63
    /oai-ran/cmake_targets/ran_build/build/libdfts.so \
64
    /usr/local/lib/
65

66
COPY --from=ru-base \
67
    /lib64/libconfig.so.11 \
68
    /lib64/libblas.so.3 \
69
    /lib64/libcblas.so.3 \
70 71
    /lib64/liblapack.so.3 \
    /lib64/liblapacke.so.3 \
72 73 74 75 76 77 78 79 80 81 82
    /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 \
83
    /lib64/
84 85

# Copying from the ran-build image the USRP needed packages
86
COPY --from=ru-base /usr/local/bin/uhd_find_devices /usr/local/bin
87
COPY --from=ru-base /usr/local/lib64/libuhd.so.4.4.0 /usr/local/lib64
88
COPY --from=ru-base /usr/local/lib64/uhd/utils/uhd_images_downloader.py /opt/oai-lte-ru/bin
89 90

WORKDIR /usr/local/share/uhd/rfnoc
91
COPY --from=ru-base /usr/local/share/uhd/rfnoc/ .
92

93
RUN /bin/bash -c "ln -s /usr/local/lib/liboai_usrpdevif.so /usr/local/lib/liboai_device.so" && \
94 95 96 97
    ldconfig

WORKDIR /opt/oai-lte-ru

98 99
COPY --from=ru-base /tini /tini
ENTRYPOINT ["/tini", "-v", "--", "/opt/oai-lte-ru/bin/entrypoint.sh"]
Robert Schmidt's avatar
Robert Schmidt committed
100
CMD ["/opt/oai-lte-ru/bin/oairu", "-O", "/opt/oai-lte-ru/etc/rru.conf"]