Dockerfile.eNB.rhel8.2 4.92 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-build:latest AS enb-build
Raphael Defosseux's avatar
Raphael Defosseux committed
29

30
RUN rm -Rf /oai-ran
Raphael Defosseux's avatar
Raphael Defosseux committed
31
WORKDIR /oai-ran
32
COPY . .
Raphael Defosseux's avatar
Raphael Defosseux committed
33 34 35 36 37

#run build_oai to build the target image
RUN /bin/sh oaienv && \ 
    cd cmake_targets && \
    mkdir -p log && \
38
    ./build_oai --eNB --ninja -w USRP --verbose-ci
Raphael Defosseux's avatar
Raphael Defosseux committed
39

40
RUN python3 ./docker/scripts/generateTemplate.py ./docker/scripts/enb_parameters.yaml
41

Raphael Defosseux's avatar
Raphael Defosseux committed
42 43
#start from scratch for target executable
FROM registry.access.redhat.com/ubi8/ubi:latest as oai-enb
44
ENV TZ=Europe/Paris
Raphael Defosseux's avatar
Raphael Defosseux committed
45 46 47 48 49

RUN yum update -y && \
    yum install -y --enablerepo="ubi-8-codeready-builder" \
        lksctp-tools \
        nettle \
50
        tzdata \
51
        procps-ng \
Raphael Defosseux's avatar
Raphael Defosseux committed
52
        atlas \
53 54
        python3 \
        python3-pip \
Raphael Defosseux's avatar
Raphael Defosseux committed
55
        net-tools \
56
        iputils \
Raphael Defosseux's avatar
Raphael Defosseux committed
57 58
        iproute \
        libyaml && \
59 60
    pip3 install six && \
    pip3 install requests && \
Raphael Defosseux's avatar
Raphael Defosseux committed
61 62 63 64 65
    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 /oai-ran/targets/bin/lte-softmodem.Rel15 .
66
COPY --from=enb-build /oai-ran/docker/scripts/enb_entrypoint.sh entrypoint.sh
Raphael Defosseux's avatar
Raphael Defosseux committed
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86

WORKDIR /usr/local/lib/
COPY --from=enb-build /oai-ran/targets/bin/liboai_eth_transpro.so.Rel15 .
COPY --from=enb-build /oai-ran/targets/bin/libtcp_bridge_oai.so.Rel15 .
COPY --from=enb-build /oai-ran/targets/bin/librfsimulator.so.Rel15 .
COPY --from=enb-build /oai-ran/targets/bin/liboai_usrpdevif.so.Rel15 .
COPY --from=enb-build /oai-ran/targets/bin/libcoding.so .
COPY --from=enb-build /oai-ran/targets/bin/libparams_libconfig.so .
COPY --from=enb-build /oai-ran/cmake_targets/ran_build/build/libdfts.so .
COPY --from=enb-build /oai-ran/cmake_targets/ran_build/build/liboai_iqplayer.so .
RUN /bin/bash -c "ln -s /usr/local/lib/liboai_eth_transpro.so.Rel15 /usr/local/lib/liboai_transpro.so"
RUN /bin/bash -c "ln -s /usr/local/lib/liboai_usrpdevif.so.Rel15 /usr/local/lib/liboai_device.so"
RUN /bin/bash -c "ln -s /usr/local/lib/librfsimulator.so.Rel15 /usr/local/lib/librfsimulator.so"

COPY --from=enb-build /usr/local/lib/libprotobuf-c.so.1 .

COPY --from=enb-build /lib64/libconfig.so.9 /lib64
COPY --from=enb-build /lib64/libblas.so.3 /lib64
COPY --from=enb-build /lib64/liblapack.so.3 /lib64
COPY --from=enb-build /lib64/liblapacke.so.3 /lib64
87 88

# Now we are copying from builder-image the UHD files.
Raphael Defosseux's avatar
Raphael Defosseux committed
89 90 91 92 93 94 95 96 97 98
COPY --from=enb-build /lib64/libboost_chrono.so.1.66.0 /lib64
COPY --from=enb-build /lib64/libboost_date_time.so.1.66.0 /lib64
COPY --from=enb-build /lib64/libboost_filesystem.so.1.66.0 /lib64
COPY --from=enb-build /lib64/libboost_program_options.so.1.66.0 /lib64
COPY --from=enb-build /lib64/libboost_serialization.so.1.66.0 /lib64
COPY --from=enb-build /lib64/libboost_thread.so.1.66.0 /lib64
COPY --from=enb-build /lib64/libboost_system.so.1.66.0 /lib64
COPY --from=enb-build /lib64/libboost_unit_test_framework.so.1.66.0 /lib64
COPY --from=enb-build /lib64/libboost_atomic.so.1.66.0 /lib64
COPY --from=enb-build /lib64/libboost_timer.so.1.66.0 /lib64
99 100 101 102 103 104 105 106
COPY --from=enb-build /lib64/libboost_regex.so.1.66.0 /lib64

COPY --from=enb-build /usr/local/bin/uhd_find_devices /usr/local/bin
COPY --from=enb-build /usr/local/lib64/libuhd.so.3.15.0 /usr/local/lib64
COPY --from=enb-build /usr/local/lib64/uhd/utils/uhd_images_downloader.py /opt/oai-enb/bin

WORKDIR /usr/local/share/uhd/rfnoc
COPY --from=enb-build /usr/local/share/uhd/rfnoc/ .
Raphael Defosseux's avatar
Raphael Defosseux committed
107 108 109 110 111

RUN ldconfig

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

WORKDIR /opt/oai-enb

116 117 118 119
# 2152 --> S1U, GTP/UDP
# 36412 --> S1C, SCTP/UDP
# 36422 --> X2C, SCTP/UDP
EXPOSE 2152/udp 36412/udp 36422/udp
Raphael Defosseux's avatar
Raphael Defosseux committed
120

121 122
ENTRYPOINT ["/opt/oai-enb/bin/entrypoint.sh"]
CMD ["/opt/oai-enb/bin/lte-softmodem.Rel15", "-O", "/opt/oai-enb/etc/enb.conf"]