Dockerfile.lteUE.rhel8.2 4.47 KB
Newer Older
Raphael Defosseux's avatar
Raphael Defosseux committed
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
#/*
# * 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
#
#---------------------------------------------------------------------

28
FROM ran-base:latest AS lte-ue-base
Raphael Defosseux's avatar
Raphael Defosseux committed
29

30
FROM ran-build:latest AS lte-ue-build
Raphael Defosseux's avatar
Raphael Defosseux committed
31

Raphael Defosseux's avatar
CI:  
Raphael Defosseux committed
32
RUN python3 ./docker/scripts/generateTemplate.py ./docker/scripts/lte_ue_parameters.yaml && \
33 34
    python3 ./docker/scripts/generateTemplate.py ./docker/scripts/lte_ue_sim_parameters.yaml && \
    cp /oai-ran/docker/scripts/lte_ue_entrypoint.sh /oai-ran/docker/scripts/entrypoint.sh
Raphael Defosseux's avatar
Raphael Defosseux committed
35 36 37

#start from scratch for target executable
FROM registry.access.redhat.com/ubi8/ubi:latest as oai-lte-ue
38
ENV TZ=Europe/Paris
Raphael Defosseux's avatar
Raphael Defosseux committed
39 40 41 42

RUN yum update -y && \
    yum install -y --enablerepo="ubi-8-codeready-builder" \
        lksctp-tools \
43
        procps-ng \
Raphael Defosseux's avatar
Raphael Defosseux committed
44
        nettle \
45
        tzdata \
Raphael Defosseux's avatar
Raphael Defosseux committed
46
        atlas \
47 48
        python3 \
        python3-pip \
Raphael Defosseux's avatar
Raphael Defosseux committed
49 50
        iproute \
        net-tools \
51
        iputils \
Raphael Defosseux's avatar
Raphael Defosseux committed
52
        libyaml && \
53 54
    pip3 install six && \
    pip3 install requests && \
Raphael Defosseux's avatar
Raphael Defosseux committed
55 56 57 58
    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-ue/bin
59 60 61 62 63 64 65
COPY --from=lte-ue-build \
    /oai-ran/targets/bin/lte-uesoftmodem.Rel15 \
    /oai-ran/docker/scripts/entrypoint.sh \
    /oai-ran/targets/bin/conf2uedata \
    /oai-ran/targets/bin/nvram \
    /oai-ran/targets/bin/usim \
    ./
Raphael Defosseux's avatar
Raphael Defosseux committed
66

67
COPY --from=lte-ue-build \
68 69 70 71 72 73
    /oai-ran/cmake_targets/ran_build/build/liboai_eth_transpro.so \
    /oai-ran/cmake_targets/ran_build/build/libtcp_bridge_oai.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 \
74 75
    /oai-ran/cmake_targets/ran_build/build/libSIMU.so \
    /oai-ran/cmake_targets/ran_build/build/libdfts.so \
76
    /usr/local/lib/
77

78
COPY --from=lte-ue-base \
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
    /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 \
94 95 96
    /lib64/libicudata.so.60 \
    /lib64/libicui18n.so.60 \
    /lib64/libicuuc.so.60 \
97
    /lib64/
98 99

# Now we are copying from builder-image the UHD files.
100 101 102 103
COPY --from=lte-ue-base /usr/local/bin/uhd_find_devices /usr/local/bin
COPY --from=lte-ue-base /usr/local/lib/libprotobuf-c.so.1 /usr/local/lib
COPY --from=lte-ue-base /usr/local/lib64/libuhd.so.3.15.0 /usr/local/lib64
COPY --from=lte-ue-base /usr/local/lib64/uhd/utils/uhd_images_downloader.py /opt/oai-lte-ue/bin
104 105

WORKDIR /usr/local/share/uhd/rfnoc
106
COPY --from=lte-ue-base /usr/local/share/uhd/rfnoc/ .
Raphael Defosseux's avatar
Raphael Defosseux committed
107

108
RUN /bin/bash -c "ln -s /usr/local/lib/liboai_usrpdevif.so /usr/local/lib/liboai_device.so" && \
109
    ldconfig
Raphael Defosseux's avatar
Raphael Defosseux committed
110

111
# Copy the relevant configuration files for UE
Raphael Defosseux's avatar
Raphael Defosseux committed
112
WORKDIR /opt/oai-lte-ue/etc
113
COPY --from=lte-ue-build /oai-ran/docker/etc .
Raphael Defosseux's avatar
Raphael Defosseux committed
114 115

WORKDIR /opt/oai-lte-ue
116 117
CMD ["/opt/oai-lte-ue/bin/lte-uesoftmodem.Rel15"]
ENTRYPOINT ["/opt/oai-lte-ue/bin/entrypoint.sh"]