blob: c7f4201c5e9f067c5b2f3eb9ae08140431fc9ea6 [file] [log] [blame]
ss412g1a79bdf2019-10-24 12:03:05 +03001##############################################################################
2#
3# Copyright (c) 2019 AT&T Intellectual Property.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17##############################################################################
ss412g3bac2da2020-01-05 11:52:19 +020018
nm755n2e268142019-11-28 16:40:23 +000019#
20# This source code is part of the near-RT RIC (RAN Intelligent Controller)
21# platform project (RICP).
22#
aa7133@att.com852ee5e2020-04-21 17:20:24 +030023FROM nexus3.o-ran-sc.org:10004/bldr-ubuntu18-c-go:7-u18.04 as ubuntu
aa7133@att.coma8a819f2020-03-16 12:04:24 +020024#FROM nexus3.o-ran-sc.org:10004/bldr-ubuntu16-c-go:3-u16.04-nng as ubuntu
ss412g1a79bdf2019-10-24 12:03:05 +030025
26WORKDIR /opt/e2/
27
aa7133@att.coma8a819f2020-03-16 12:04:24 +020028ARG BUILD_TYPE="Release"
29
ss412g1a79bdf2019-10-24 12:03:05 +030030RUN mkdir -p /opt/e2/RIC-E2-TERMINATION/ \
31 && mkdir -p /opt/e2/RIC-E2-TERMINATION/TEST/T1 \
ss412g3bac2da2020-01-05 11:52:19 +020032 && mkdir -p /opt/e2/RIC-E2-TERMINATION/TEST/T2 \
33 && mkdir -p /opt/e2/RIC-E2-TERMINATION/3rdparty
34
ss412g1a79bdf2019-10-24 12:03:05 +030035COPY . /opt/e2/RIC-E2-TERMINATION/
36RUN mv /opt/e2/RIC-E2-TERMINATION/CMakeLists.txt /opt/e2/
37
aa7133@att.coma8a819f2020-03-16 12:04:24 +020038RUN cat /opt/e2/RIC-E2-TERMINATION/config/config.conf
ss412g3bac2da2020-01-05 11:52:19 +020039
aa7133@att.coma8a819f2020-03-16 12:04:24 +020040RUN wget --content-disposition https://github.com/cgreen-devs/cgreen/releases/download/1.2.0/cgreen_1.2.0_amd64.deb \
41 && dpkg -i cgreen_1.2.0_amd64.deb \
aa7133@att.com852ee5e2020-04-21 17:20:24 +030042 && wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr_3.8.2_amd64.deb/download.deb \
43 && dpkg -i rmr_3.8.2_amd64.deb \
44 && wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr-dev_3.8.2_amd64.deb/download.deb \
45 && dpkg -i rmr-dev_3.8.2_amd64.deb
ss412g1a79bdf2019-10-24 12:03:05 +030046
aa7133@att.com233facd2020-04-02 00:10:46 +030047RUN apt-get install -y libcurl4-gnutls-dev gawk libtbb-dev libtbb-doc libtbb2 libtbb2-dbg \
aa7133@att.coma8a819f2020-03-16 12:04:24 +020048 && cd /opt/e2/RIC-E2-TERMINATION/3rdparty && git clone https://github.com/oktal/pistache.git && cd pistache \
49 && git submodule update --init && mkdir build && cd build \
50 && cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DPISTACHE_BUILD_DOCS=false \
51 -DPISTACHE_USE_SSL=false -DPISTACHE_BUILD_TESTS=false -DCMAKE_INSTALL_PREFIX=/usr/local ../ \
52 && make -j && make install && ldconfig \
aa7133@att.comb5903cc2020-03-22 21:04:40 +020053 && git clone http://gerrit.o-ran-sc.org/r/com/log \
ss412g3bac2da2020-01-05 11:52:19 +020054 && cd log && ./autogen.sh && ./configure && make && make install && ldconfig \
55 && cd /opt/e2/RIC-E2-TERMINATION/3rdparty && git clone https://github.com/jarro2783/cxxopts.git \
aa7133@att.com233facd2020-04-02 00:10:46 +030056# && cd cxxopts && mkdir build && cd build && cmake .. && make install && ldconfig \
ss412g3bac2da2020-01-05 11:52:19 +020057 && cd /opt/e2/RIC-E2-TERMINATION/3rdparty && git clone https://github.com/Tencent/rapidjson.git \
aa7133@att.com233facd2020-04-02 00:10:46 +030058# && cd rapidjson && mkdir build && cd build && cmake .. && make install && ldconfig \
59 && cd /opt/e2/RIC-E2-TERMINATION/3rdparty && git clone https://github.com/zeux/pugixml.git \
ss412g3bac2da2020-01-05 11:52:19 +020060 && cd /opt/e2/ && git clone https://github.com/bilke/cmake-modules.git \
aa7133@att.comb5903cc2020-03-22 21:04:40 +020061 && cd /opt/e2/ && /usr/local/bin/cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE . && make \
62 && echo "3" > /opt/e2/rmr.verbose
63
ss412g3bac2da2020-01-05 11:52:19 +020064
aa7133@att.com4f961d42020-01-20 18:55:15 +020065
ss412g3bac2da2020-01-05 11:52:19 +020066RUN if [$BUILD_TYPE == "Debug"] ; then make e2_coverage ; fi
ss412g1a79bdf2019-10-24 12:03:05 +030067
68# && git clone http://gerrit.o-ran-sc.org/r/ric-plt/tracelibcpp \
69# && cd tracelibcpp && mkdir build && cd build \
70# && sed -i '19iset\(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3"\)' ../CMakeLists.txt \
71# && sed -i '19iset\(CMAKE_CXX_STANDARD 17\)' ../CMakeLists.txt\
72# && /usr/local/bin/cmake .. && make && cd .. && cp include/tracelibcpp/tracelibcpp.hpp . && cd .. \
73# && mkdir nlohmann && cd nlohmann && find / -type f -name "json.hpp" -exec cp {} json.hpp \; && cd .. \
74# && find / -type d -name "opentracing" -exec cp -r {} . \; \
75# && cd /usr/local/lib/ && find / -type f -name "libyaml-cpp.a" -exec cp {} libyaml-cpp.a \; \
76# && find / -type f -name "libopentracing.a" -exec cp {} libopentracing.a \; && cd /opt/e2/RIC-E2-TERMINATION && ls nlohmann \
77
aa7133@att.coma8a819f2020-03-16 12:04:24 +020078FROM ubuntu:18.04
aa7133@att.comc41673d2020-03-31 13:35:06 +030079RUN apt-get update && apt-get install -y net-tools iputils-ping curl tcpdump && mkdir -p /opt/e2/config
ss412g1a79bdf2019-10-24 12:03:05 +030080
81COPY --from=ubuntu /opt/e2/e2 /opt/e2/e2
aa7133@att.comb5903cc2020-03-22 21:04:40 +020082COPY --from=ubuntu /opt/e2/rmr.verbose /tmp/rmr.verbose
ss412g1a79bdf2019-10-24 12:03:05 +030083COPY --from=ubuntu /opt/e2/RIC-E2-TERMINATION/dockerRouter.txt /opt/e2/dockerRouter.txt
ss412g3bac2da2020-01-05 11:52:19 +020084COPY --from=ubuntu /opt/e2/RIC-E2-TERMINATION/config/config.conf /opt/e2/config/config.conf
root8db75912020-01-23 17:11:52 +000085COPY --from=ubuntu /opt/e2/RIC-E2-TERMINATION/startup.sh /opt/e2/startup.sh
ss412g1a79bdf2019-10-24 12:03:05 +030086#COPY --from=ubuntu /opt/e2/RIC-E2-TERMINATION/tracelibcpp/build/libtracelibcpp.so /usr/local/lib/libtracelibcpp.so
87#COPY --from=ubuntu /opt/e2/RIC-E2-TERMINATION/tracelibcpp/build/libtracelibcpp.so.0 /usr/local/lib/libtracelibcpp.so.0
88#COPY --from=ubuntu /opt/e2/RIC-E2-TERMINATION/tracelibcpp/build/libtracelibcpp.so.0.0.2 /usr/local/lib/libtracelibcpp.so.0.0.2
aa7133@att.coma8a819f2020-03-16 12:04:24 +020089
aa7133@att.com852ee5e2020-04-21 17:20:24 +030090#COPY --from=ubuntu /usr/local/lib/libnng.so /usr/local/lib/libnng.so
91#COPY --from=ubuntu /usr/local/lib/libnng.so.1 /usr/local/lib/libnng.so.1
92#COPY --from=ubuntu /usr/local/lib/libnng.so.1.1.0 /usr/local/lib/libnng.so.1.1.0
aa7133@att.coma8a819f2020-03-16 12:04:24 +020093#
aa7133@att.com852ee5e2020-04-21 17:20:24 +030094#COPY --from=ubuntu /usr/local/lib/librmr_nng.so.3.8.2 /usr/local/lib/librmr_nng.so.3.8.2
95
96COPY --from=ubuntu /usr/local/lib/librmr_si.so.3.8.2 /usr/local/lib/librmr_si.so.3.8.2
aa7133@att.coma8a819f2020-03-16 12:04:24 +020097COPY --from=ubuntu /usr/local/lib/librmr_si.so.3 /usr/local/lib/librmr_si.so.3
98COPY --from=ubuntu /usr/local/lib/librmr_si.so /usr/local/lib/librmr_si.so
aa7133@att.com852ee5e2020-04-21 17:20:24 +030099#COPY --from=ubuntu /usr/local/lib/librmr_nng.so.3 /usr/local/lib/librmr_nng.so.3
100#COPY --from=ubuntu /usr/local/lib/librmr_nng.so /usr/local/lib/librmr_nng.so
aa7133@att.coma8a819f2020-03-16 12:04:24 +0200101
102
ss412g1a79bdf2019-10-24 12:03:05 +0300103COPY --from=ubuntu /usr/local/lib/libmdclog.so.0 /usr/local/lib/libmdclog.so.0
104
aa7133@att.coma8a819f2020-03-16 12:04:24 +0200105COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libcgreen.so /usr/local/libcgreen.so
aa7133@att.com233facd2020-04-02 00:10:46 +0300106COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libcgreen.so.1 /usr/local/libcgreen.so.1
aa7133@att.coma8a819f2020-03-16 12:04:24 +0200107COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libcgreen.so.1.2.0 /usr/local/libcgreen.so.1.2.0
108
aa7133@att.com233facd2020-04-02 00:10:46 +0300109COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libtbb.so /usr/local/libtbb.so
110COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libtbb.so.2 /usr/local/libtbb.so.2
111
112COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libtbbmalloc.so /usr/local/libtbbmalloc.so
113COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libtbbmalloc.so.2 /usr/local/libtbbmalloc.so.2
114
115COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libtbbmalloc_proxy.so /usr/local/libtbbmalloc_proxy.so
116COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libtbbmalloc_proxy.so.2 /usr/local/libtbbmalloc_proxy.so.2
117
ss412g1a79bdf2019-10-24 12:03:05 +0300118COPY --from=ubuntu /usr/lib/libboost_log_setup.so /usr/lib/libboost_log_setup.so
119COPY --from=ubuntu /usr/lib/libboost_log_setup.so.1.69.0 /usr/lib/libboost_log_setup.so.1.69.0
120
aa7133@att.com79bd3742020-01-21 09:10:19 +0200121#COPY --from=ubuntu /usr/local/lib/libpistache.so /usr/local/lib/libpistache.so
122#COPY --from=ubuntu /usr/local/lib/libpistache.so.0 /usr/local/lib/libpistache.so.0
123#COPY --from=ubuntu /usr/local/lib/libpistache.so.0.0.001-git20191031 /usr/local/lib/libpistache.so.0.0.001-git20191031
ss412g3bac2da2020-01-05 11:52:19 +0200124
125
ss412g1a79bdf2019-10-24 12:03:05 +0300126COPY --from=ubuntu /usr/lib/libboost_log.so /usr/lib/libboost_log.so
127COPY --from=ubuntu /usr/lib/libboost_log.so.1.69.0 /usr/lib/libboost_log.so.1.69.0
128
129COPY --from=ubuntu /usr/lib/libboost_thread.so /usr/lib/libboost_thread.so
130COPY --from=ubuntu /usr/lib/libboost_thread.so.1.69.0 /usr/lib/libboost_thread.so.1.69.0
131
132COPY --from=ubuntu /usr/lib/libboost_filesystem.so /usr/lib/libboost_filesystem.so
133COPY --from=ubuntu /usr/lib/libboost_filesystem.so.1.69.0 /usr/lib/libboost_filesystem.so.1.69.0
134
135COPY --from=ubuntu /usr/lib/libboost_regex.so /usr/lib/libboost_regex.so
136COPY --from=ubuntu /usr/lib/libboost_regex.so.1.69.0 /usr/lib/libboost_regex.so.1.69.0
137
aa7133@att.coma8a819f2020-03-16 12:04:24 +0200138COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libicui18n.so /usr/lib/libicui18n.so
139COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libicui18n.so.60.2 /usr/lib/libicui18n.so.60.2
140COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libicui18n.so.60 /usr/lib/libicui18n.so.60
ss412g1a79bdf2019-10-24 12:03:05 +0300141
aa7133@att.coma8a819f2020-03-16 12:04:24 +0200142COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libicuuc.so /usr/lib/libicuuc.so
143COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libicuuc.so.60.2 /usr/lib/libicuuc.so.60.2
144COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libicuuc.so.60 /usr/lib/libicuuc.so.60
ss412g1a79bdf2019-10-24 12:03:05 +0300145
aa7133@att.coma8a819f2020-03-16 12:04:24 +0200146COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libicudata.so /usr/lib/libicudata.so
147COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libicudata.so.60.2 /usr/lib/libicudata.so.60.2
148COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libicudata.so.60 /usr/lib/libicudata.so.60
ss412g1a79bdf2019-10-24 12:03:05 +0300149
aa7133@att.coma8a819f2020-03-16 12:04:24 +0200150COPY --from=ubuntu /usr/lib/x86_64-linux-gnu/libstdc++.so.6 /usr/lib/libstdc++.so.6
ss412g1a79bdf2019-10-24 12:03:05 +0300151
152WORKDIR /opt/e2/
153ENV LD_LIBRARY_PATH=/usr/local/lib
154ENV RMR_SEED_RT=dockerRouter.txt
aa7133@att.coma8a819f2020-03-16 12:04:24 +0200155ENV E2TERM_POD_NAME=e2term
root8db75912020-01-23 17:11:52 +0000156RUN chmod +x /opt/e2/startup.sh
ss412g1a79bdf2019-10-24 12:03:05 +0300157EXPOSE 38000
root8db75912020-01-23 17:11:52 +0000158CMD ["sh", "-c", "./startup.sh"]