Dockerfile.nrUE.ubuntu18 4.48 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
#/*
# * 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 Ubuntu 18.04
#
#---------------------------------------------------------------------

28
FROM ran-build:latest AS nr-ue-build
29

30
RUN rm -Rf /oai-ran
31
WORKDIR /oai-ran
32
COPY . .
33 34 35 36 37

#run build_oai to build the target image
RUN /bin/sh oaienv && \ 
    cd cmake_targets && \
    mkdir -p log && \
38 39
    ./build_oai --nrUE --ninja -w USRP --verbose-ci && \
    cp /oai-ran/docker/scripts/nr_ue_entrypoint.sh /oai-ran/docker/scripts/entrypoint.sh
40 41 42 43

#start from scratch for target executable
FROM ubuntu:bionic as oai-nr-ue
ENV DEBIAN_FRONTEND=noninteractive
44
ENV TZ=Europe/Paris
45 46 47 48 49 50

RUN apt-get update && \
    DEBIAN_FRONTEND=noninteractive apt-get upgrade --yes && \
    DEBIAN_FRONTEND=noninteractive apt-get install --yes \
        software-properties-common \
        libsctp1 \
51
        procps \
52
        tzdata \
53 54 55 56 57 58
        libnettle6 \
        liblapacke \
        libatlas3-base \
        libconfig9 \
        openssl \
        net-tools \
59 60 61 62 63
        python \
        python3 \
        python3-six \
        python3-requests \
        libusb-1.0-0 \
64
        iputils-ping \
65
        iproute2 \
66
        iperf \
67 68 69 70
        libyaml-0-2 && \
    rm -rf /var/lib/apt/lists/*

WORKDIR /opt/oai-nr-ue/bin
71 72 73 74
COPY --from=nr-ue-build \
    /oai-ran/targets/bin/nr-uesoftmodem.Rel15 \
    /oai-ran/docker/scripts/entrypoint.sh \
    ./
75 76 77

WORKDIR /opt/oai-nr-ue/etc
COPY --from=nr-ue-build /oai-ran/ci-scripts/conf_files/nr-ue-sim.conf .
78 79

WORKDIR /usr/local/lib/
80 81 82 83 84 85 86 87 88 89 90 91 92 93
COPY --from=nr-ue-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/libcoding.so \
    /oai-ran/targets/bin/libparams_libconfig.so \
    /oai-ran/cmake_targets/ran_build/build/libdfts.so \
    /oai-ran/cmake_targets/ran_build/build/libldpc.so \
    /oai-ran/cmake_targets/ran_build/build/libldpc_optim.so \
    /oai-ran/cmake_targets/ran_build/build/libldpc_optim8seg.so \
    /oai-ran/cmake_targets/ran_build/build/libldpc_orig.so \
    /usr/local/lib/libprotobuf-c.so.1 \
    ./
94

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

100
WORKDIR /usr/lib/x86_64-linux-gnu
101 102 103 104 105 106 107 108 109
COPY --from=nr-ue-build \
    /usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.65.1 \
    /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.65.1 \
    /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.65.1 \
    /usr/lib/x86_64-linux-gnu/libboost_serialization.so.1.65.1 \
    /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.65.1 \
    /usr/lib/x86_64-linux-gnu/libboost_system.so.1.65.1 \
    /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.65.1 \
    ./
110

111 112 113 114
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
115 116

WORKDIR /opt/oai-nr-ue
117 118
CMD ["/opt/oai-nr-ue/bin/nr-uesoftmodem.Rel15", "-O", "/opt/oai-nr-ue/etc/nr-ue-sim.conf"]
ENTRYPOINT ["/opt/oai-nr-ue/bin/entrypoint.sh"]