Rollback
[ric-app/hw.git] / Dockerfile
1 #/*
2 #==================================================================================
3 #
4 #        Copyright (c) 2019-2020 AT&T Intellectual Property.
5 #
6 #   Licensed under the Apache License, Version 2.0 (the "License");
7 #   you may not use this file except in compliance with the License.
8 #   You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #   Unless required by applicable law or agreed to in writing, software
13 #   distributed under the License is distributed on an "AS IS" BASIS,
14 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #   See the License for the specific language governing permissions and
16 #   limitations under the License.
17 #==================================================================================
18 # */
19
20 ARG SCHEMA_PATH=schemas
21 ARG STAGE_DIR=/tmp/helloworld-xapp
22
23 #==================================================================================
24 FROM nexus3.o-ran-sc.org:10001/ubuntu:18.04 as ricbuild
25
26 # to override repo base, pass in repo argument when running docker build:
27 # docker build --build-arg REPOBASE=http://abc.def.org . ....
28 ARG REPOBASE=https://gerrit.oran-osc.org/r
29 ARG SCHEMA_FILE
30 ARG SCHEMA_PATH
31 ARG STAGE_DIR
32
33 # Install necessary packages
34 WORKDIR ${STAGE_DIR}
35 RUN apt-get update  \
36      && apt-get install -y \
37      cmake \
38      git \
39      build-essential \
40      automake \
41      autoconf-archive \
42      autoconf \
43      pkg-config \
44      gawk \
45      libtool \
46      wget \
47      zlib1g-dev \
48      libffi-dev \
49      && apt-get clean
50
51 # Install mdclog using debian package hosted at packagecloud.io
52 ARG MDC_VER=0.0.4-1
53 RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/mdclog_${MDC_VER}_amd64.deb/download.deb
54 RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/mdclog-dev_${MDC_VER}_amd64.deb/download.deb
55 RUN dpkg -i mdclog_${MDC_VER}_amd64.deb
56 RUN dpkg -i mdclog-dev_${MDC_VER}_amd64.deb
57
58 # Install RMr using debian package hosted at packagecloud.io
59 ARG RMR_VER=4.0.5
60 RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rmr_${RMR_VER}_amd64.deb/download.deb
61 RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rmr-dev_${RMR_VER}_amd64.deb/download.deb
62 RUN dpkg -i rmr_${RMR_VER}_amd64.deb
63 RUN dpkg -i rmr-dev_${RMR_VER}_amd64.deb
64
65 #Install RNIB libraries
66 ARG RNIB_VER=1.0.0
67 RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rnib_${RNIB_VER}_all.deb/download.deb
68 RUN dpkg -i rnib_${RNIB_VER}_all.deb
69
70 ## Install SDL Libraries
71 WORKDIR ${STAGE_DIR}
72 RUN apt-get install -y cpputest
73 RUN apt-get remove -y libboost-all-dev
74 RUN apt-get install -y  libboost-all-dev
75 RUN apt-get install -y libhiredis-dev
76 #RUN apt-get install -y valgrind
77
78 RUN git clone https://gerrit.o-ran-sc.org/r/ric-plt/dbaas
79 RUN cd dbaas/redismodule && \
80     ./autogen.sh && \
81     ./configure && \
82     make all && \
83     make install
84
85 WORKDIR ${STAGE_DIR}
86 RUN git clone https://gerrit.o-ran-sc.org/r/ric-plt/sdl
87 RUN cd sdl && \
88     ./autogen.sh && \
89     ./configure && \
90     make all && \
91     make install
92
93
94 WORKDIR ${STAGE_DIR}
95 ## Install rapidjson
96
97 RUN git clone https://github.com/Tencent/rapidjson && \
98     cd rapidjson && \
99     mkdir build && \
100     cd build && \
101     cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. && \
102     make install && \
103     cd ${STAGE_DIR} && \
104     rm -rf rapidjson
105
106 ##-----------------------------------
107 # Now install the program
108 #------------------------------------
109 COPY ./ ${STAGE_DIR}
110 RUN ls -al
111
112
113 RUN export CPATH=$CPATH:/usr/local/include && \ 
114     cd src && \
115 #    source ./xapp_env.sh \
116     make clean && \
117     make install 
118
119 COPY ${SCHEMA_PATH}/* /etc/xapp/ 
120 COPY init/init_script.py /etc/xapp/init_script.py
121 COPY init/routes.txt  /etc/xapp/routes.txt
122 #---------------------------------------------
123 # #Build the final version
124
125 FROM ubuntu:18.04
126
127 ARG SCHEMA_PATH
128 ARG STAGE_DIR
129
130 ## copy just the needed libraries install it into the final image
131 COPY --from=ricbuild ${STAGE_DIR}/*.deb /tmp/
132 COPY --from=ricbuild /usr/local/lib/librmr_si* /usr/local/lib/
133 COPY --from=ricbuild /usr/local/lib/libsdl* /usr/local/lib/
134 COPY --from=ricbuild /usr/local/libexec/redismodule/libredis* /usr/local/libexec/redismodule/
135 RUN dpkg -i /tmp/*.deb
136 RUN apt-get update && \
137     apt-get install -y libcurl3 python3 && \
138     apt-get install -y libboost-all-dev cpputest libhiredis-dev valgrind && \
139     apt-get clean
140 COPY --from=ricbuild /etc/xapp/* /etc/xapp/
141 COPY --from=ricbuild /usr/local/bin/hw_xapp_main /usr/local/bin/hw_xapp_main
142 COPY --from=ricbuild /usr/local/include/rnib/*.h /usr/local/include/rnib/
143 COPY --from=ricbuild /usr/local/include/rnib/rnibreader.a /usr/local/include/rnib/
144
145
146 RUN ldconfig
147 RUN sysctl -w net.ipv6.conf.lo.disable_ipv6=1
148
149 ##ENV  PYTHONHOME=/opt/python3 \
150 ##     PYTHONPATH=/opt/python3 \
151 ENV  RMR_RTG_SVC="9999" \
152      RMR_SEED_RT="/etc/xapp/routes.txt" \
153      LD_LIBRARY_PATH="/usr/local/lib:/usr/local/libexec" \
154      VERBOSE=0 \
155      CONFIG_FILE=/opt/ric/config/config-file.json
156      
157       
158
159 CMD python3 /etc/xapp/init_script.py $CONFIG_FILE