Dockerfile.eNB.ubuntu20 4.47 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 Ubuntu 20.04
25 26 27
#
#---------------------------------------------------------------------

28
FROM ran-base:latest as enb-base
29

30
FROM ran-build:latest AS enb-build
31

32

33
#start from scratch for target executable
34
FROM ubuntu:focal as oai-enb
35
ARG SANITIZE_OPTION
36
ENV DEBIAN_FRONTEND=noninteractive
37
ENV TZ=Europe/Paris
38 39 40 41 42

RUN apt-get update && \
    DEBIAN_FRONTEND=noninteractive apt-get upgrade --yes && \
    DEBIAN_FRONTEND=noninteractive apt-get install --yes \
        software-properties-common \
43
        tzdata \
44
        procps \
45 46 47 48 49 50
        libsctp1 \
        libblas3 \
        libatlas3-base \
        libconfig9 \
        openssl \
        net-tools \
51
        iperf \
52
        iputils-ping \
53
        iproute2 \
54
        iperf \
55
        gdb \
56
        python \
57 58 59
        python3 \
        python3-six \
        python3-requests \
Robert Schmidt's avatar
Robert Schmidt committed
60
        libusb-1.0-0 && \
61 62 63 64 65
# if the --sanitize option was used to build, additional packages are required
    /bin/bash -c 'if [[ "$SANITIZE_OPTION" = "--sanitize" ]]; then DEBIAN_FRONTEND=noninteractive apt-get install --yes \
        libasan5 \
        libubsan1 \
        liblapacke; fi' && \
66 67 68
    rm -rf /var/lib/apt/lists/*

WORKDIR /opt/oai-enb/bin
69
COPY --from=enb-build \
70 71
    /oai-ran/cmake_targets/ran_build/build/lte-softmodem ./
COPY ./docker/scripts/enb_entrypoint.sh ./entrypoint.sh
72

73
COPY --from=enb-build \
74 75 76 77 78
     /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 \
79 80
     /oai-ran/cmake_targets/ran_build/build/libdfts.so \
     /oai-ran/cmake_targets/ran_build/build/liboai_iqplayer.so \
81 82
     /oai-ran/cmake_targets/ran_build/build/libtelnetsrv.so \
     /oai-ran/cmake_targets/ran_build/build/libtelnetsrv_enb.so \
83
     /usr/local/lib/
84

85
# Now we are copying from builder-image the UHD files.
86
COPY --from=enb-base /usr/local/bin/uhd_find_devices /usr/local/bin
87
COPY --from=enb-base /usr/local/lib/libuhd.so.4.4.0 /usr/local/lib
88 89
COPY --from=enb-base /usr/local/lib/uhd/utils/uhd_images_downloader.py /opt/oai-enb/bin
COPY --from=enb-base \
90
     /usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.71.0 \
91 92 93 94 95 96 97
     /usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.71.0 \
     /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.71.0 \
     /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.71.0 \
     /usr/lib/x86_64-linux-gnu/libboost_serialization.so.1.71.0 \
     /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.71.0 \
     /usr/lib/x86_64-linux-gnu/libboost_system.so.1.71.0 \
     /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.71.0 \
98
     /usr/lib/x86_64-linux-gnu/
99

100
RUN /bin/bash -c "ln -s /usr/local/lib/liboai_usrpdevif.so /usr/local/lib/liboai_device.so" && \
101
    /bin/bash -c "ln -s /usr/local/lib/liboai_eth_transpro.so /usr/local/lib/liboai_transpro.so" && \
102 103
    ldconfig && \
    ldd /opt/oai-enb/bin/lte-softmodem
104 105 106

WORKDIR /opt/oai-enb

107 108 109 110
# 2152 --> S1U, GTP/UDP
# 36412 --> S1C, SCTP/UDP
# 36422 --> X2C, SCTP/UDP
EXPOSE 2152/udp 36412/udp 36422/udp
111 112 113 114
#EXPOSE 22100/tcp # ?
#EXPOSE 50000/udp # IF5 / ORI (control)
#EXPOSE 50001/udp # IF5 / ECPRI (data)

115
ENTRYPOINT ["/opt/oai-enb/bin/entrypoint.sh"]
Robert Schmidt's avatar
Robert Schmidt committed
116
CMD ["/opt/oai-enb/bin/lte-softmodem", "-O", "/opt/oai-enb/etc/enb.conf"]