Dockerfile.lteRU.rhel8.2 4.27 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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
#/*
# * 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
#   Valid for RHEL8
#
#---------------------------------------------------------------------

FROM ran-build:latest AS ru-build

RUN rm -Rf /oai-ran
WORKDIR /oai-ran
COPY . .

#run build_oai to build the target image
RUN /bin/sh oaienv && \
    cd cmake_targets && \
    mkdir -p log && \
    ./build_oai --RU --ninja -w USRP --verbose-ci

40 41
RUN python3 ./docker/scripts/generateTemplate.py ./docker/scripts/enb_parameters.yaml && \
    cp /oai-ran/docker/scripts/lte_ru_entrypoint.sh /oai-ran/docker/scripts/entrypoint.sh
42 43 44 45 46 47 48 49

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

RUN yum update -y && \
    yum install -y --enablerepo="ubi-8-codeready-builder" \
        tzdata \
50
        procps-ng \
51
        atlas \
52 53
        python3 \
        python3-pip \
54 55 56
        net-tools \
        iputils \
        iproute && \
57 58
    pip3 install six && \
    pip3 install requests && \
59 60 61 62
    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
63 64 65 66
COPY --from=ru-build \
    /oai-ran/targets/bin/oairu.Rel15 \
    /oai-ran/docker/scripts/entrypoint.sh \
    .
67 68

WORKDIR /usr/local/lib/
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
COPY --from=ru-build \
    /oai-ran/targets/bin/liboai_eth_transpro.so.Rel15 \
    /oai-ran/targets/bin/libtcp_bridge_oai.so.Rel15 \
    /oai-ran/targets/bin/librfsimulator.so.Rel15 \
    /oai-ran/targets/bin/liboai_usrpdevif.so.Rel15 \
    /oai-ran/targets/bin/libparams_libconfig.so \
    /oai-ran/cmake_targets/ran_build/build/libdfts.so \
    ./

COPY --from=ru-build \
    /lib64/libconfig.so.9 \
    /lib64/libblas.so.3 \
    /lib64/liblapack.so.3 \
    /lib64/liblapacke.so.3 \
    /lib64/libboost_chrono.so.1.66.0 \
    /lib64/libboost_date_time.so.1.66.0 \
    /lib64/libboost_filesystem.so.1.66.0 \
    /lib64/libboost_program_options.so.1.66.0 \
    /lib64/libboost_serialization.so.1.66.0 \
    /lib64/libboost_thread.so.1.66.0 \
    /lib64/libboost_system.so.1.66.0 \
    /lib64/libboost_unit_test_framework.so.1.66.0 \
    /lib64/libboost_atomic.so.1.66.0 \
    /lib64/libboost_timer.so.1.66.0 \
    /lib64/libboost_regex.so.1.66.0 \
    /lib64/
95 96 97 98 99 100 101 102

# Copying from the ran-build image the USRP needed packages
COPY --from=ru-build /usr/local/bin/uhd_find_devices /usr/local/bin
COPY --from=ru-build /usr/local/lib64/libuhd.so.3.15.0 /usr/local/lib64
COPY --from=ru-build /usr/local/lib64/uhd/utils/uhd_images_downloader.py /opt/oai-lte-ru/bin

WORKDIR /usr/local/share/uhd/rfnoc
COPY --from=ru-build /usr/local/share/uhd/rfnoc/ .
103 104 105 106 107 108 109 110 111 112 113 114 115 116

RUN /bin/bash -c "ln -s /usr/local/lib/liboai_eth_transpro.so.Rel15 /usr/local/lib/liboai_transpro.so" && \
    /bin/bash -c "ln -s /usr/local/lib/liboai_usrpdevif.so.Rel15 /usr/local/lib/liboai_device.so" && \
    /bin/bash -c "ln -s /usr/local/lib/librfsimulator.so.Rel15 /usr/local/lib/librfsimulator.so" && \
    ldconfig

# Copy the relevant configuration files for RRU
WORKDIR /opt/oai-lte-ru/etc
COPY --from=ru-build /oai-ran/docker/etc/rru* ./

WORKDIR /opt/oai-lte-ru

ENTRYPOINT ["/opt/oai-lte-ru/bin/entrypoint.sh"]
CMD ["/opt/oai-lte-ru/bin/oairu.Rel15", "-O", "/opt/oai-lte-ru/etc/rru.conf"]