Dockerfile.nrUE.ubuntu20 4.07 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 nr-ue-base
29

30
FROM ran-build:latest AS nr-ue-build
31 32 33


#start from scratch for target executable
34
FROM ubuntu:focal as oai-nr-ue
35
ARG BUILD_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
        procps \
44 45 46 47 48 49 50 51 52
        libsctp1 \
        libboost-chrono1.71.0 \
        libboost-date-time1.71.0 \
        libboost-filesystem1.71.0 \
        libboost-regex1.71.0 \
        libboost-serialization1.71.0 \
        libboost-thread1.71.0 \
        libboost-system1.71.0 \
        libboost-program-options1.71.0 \
53
        tzdata \
54 55 56 57 58
        liblapacke \
        libatlas3-base \
        libconfig9 \
        openssl \
        net-tools \
59
        gdb \
60 61 62 63 64
        python \
        python3 \
        python3-six \
        python3-requests \
        libusb-1.0-0 \
65
        iputils-ping \
66
        iproute2 \
67
        iperf3 \
Robert Schmidt's avatar
Robert Schmidt committed
68
        iperf && \
69
# if the --sanitize option was used to build, additional packages are required
70
    /bin/bash -c 'if [[ "$BUILD_OPTION" = "--sanitize" ]]; then DEBIAN_FRONTEND=noninteractive apt-get install --yes \
71 72
        libasan5 \
        libubsan1; fi' && \
73
    apt-get clean -y && \
74 75 76
    rm -rf /var/lib/apt/lists/*

WORKDIR /opt/oai-nr-ue/bin
77
COPY --from=nr-ue-build \
Robert Schmidt's avatar
Robert Schmidt committed
78
    /oai-ran/cmake_targets/ran_build/build/nr-uesoftmodem \
79
    ./
80

81
COPY ./docker/scripts/nr_ue_entrypoint.sh ./entrypoint.sh
82
WORKDIR /opt/oai-nr-ue/etc
83

84
COPY --from=nr-ue-build \
85 86 87 88 89
    /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 \
90
    /oai-ran/cmake_targets/ran_build/build/libdfts.so \
91
    /oai-ran/cmake_targets/ran_build/build/libldpc*.so \
92
    /oai-ran/cmake_targets/ran_build/build/libtelnetsrv.so \
93
    /oai-ran/cmake_targets/ran_build/build/libtelnetsrv_ciUE.so \
94
    /oai-ran/cmake_targets/ran_build/build/libtelnetsrv_5Gue.so \
95
    /usr/local/lib/
96

97
# Now we are copying from builder-image the UHD files.
98
COPY --from=nr-ue-base /usr/local/bin/uhd_find_devices /usr/local/bin
99
COPY --from=nr-ue-base /usr/local/lib/libuhd.so.4.4.0 /usr/local/lib
100
COPY --from=nr-ue-base /usr/local/lib/uhd/utils/uhd_images_downloader.py /opt/oai-nr-ue/bin
101

102
RUN /bin/bash -c "ln -s /usr/local/lib/liboai_usrpdevif.so /usr/local/lib/liboai_device.so" && \
103 104
    ldconfig && \
    ldd /opt/oai-nr-ue/bin/nr-uesoftmodem
105 106

WORKDIR /opt/oai-nr-ue
107
COPY --from=nr-ue-base /tini /tini
Robert Schmidt's avatar
Robert Schmidt committed
108
CMD ["/opt/oai-nr-ue/bin/nr-uesoftmodem", "-O", "/opt/oai-nr-ue/etc/nr-ue.conf"]
109
ENTRYPOINT ["/tini", "-v", "--", "/opt/oai-nr-ue/bin/entrypoint.sh"]