Dockerfile.lteUE.ubuntu18 4.26 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 Ubuntu18.04
#
#---------------------------------------------------------------------

28
FROM ran-base:latest AS lte-ue-base
29

30
FROM ran-build:latest AS lte-ue-build 
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
35 36 37 38

#start from scratch for target executable
FROM ubuntu:bionic as oai-lte-ue
ENV DEBIAN_FRONTEND=noninteractive
39
ENV TZ=Europe/Paris
40 41 42 43 44

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

WORKDIR /opt/oai-lte-ue/bin
66 67 68 69 70 71 72
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 \
    ./
73

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

85
# Now we are copying from builder-image the UHD files.
86 87 88 89 90 91
COPY --from=lte-ue-base /usr/local/bin/uhd_find_devices /usr/local/bin
COPY --from=lte-ue-base \
     /usr/local/lib/libuhd.so.3.15.0 \
     /usr/local/lib/libprotobuf-c.so.1 \
     /usr/local/lib/
COPY --from=lte-ue-base /usr/local/lib/uhd/utils/uhd_images_downloader.py /opt/oai-lte-ue/bin
92

93
COPY --from=lte-ue-base \
94 95 96 97 98 99 100
    /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 \
101
    /usr/lib/x86_64-linux-gnu/
102

103
RUN /bin/bash -c "ln -s /usr/local/lib/liboai_usrpdevif.so /usr/local/lib/liboai_device.so" && \
104
    ldconfig
105

106
# Copy the relevant configuration files for UE
107
WORKDIR /opt/oai-lte-ue/etc
108
COPY --from=lte-ue-build /oai-ran/docker/etc .
109 110

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