Releasing G release step 2 of 2
[ric-plt/xapp-frame-cpp.git] / Dockerfile
1 # vim: ts=4 sw=4 noet:
2 #==================================================================================
3 #       Copyright (c) 2018-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
18
19 # --------------------------------------------------------------------------------------
20 #       Mnemonic:       Dockerfile
21 #       Abstract:       This can be used to create a base environment for using the xAPP
22 #                               framework.  It will install RMR and the framework libraries. It also
23 #                               installs make and g++ so that it can be used as a builder environment.
24 #
25 #                               The unit tests are executed as a part of the build process; if they are
26 #                               not passing then the build will fail.
27 #
28 #                               Building should be as simple as:
29 #
30 #                                       docker build -f Dockerfile -t ricxfcpp:[version]
31 #
32 #       Date:           23 March 2020
33 #       Author:         E. Scott Daniels
34 # --------------------------------------------------------------------------------------
35
36
37 FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu20-c-go:1.0.0 as buildenv
38 RUN mkdir /playpen
39
40 RUN apt-get update && apt-get install -y cmake gcc make git g++ wget
41
42 RUN mkdir /playpen/bin /playpen/factory /playpen/factory/src /playpen/factory/test
43 ARG SRC=.
44
45 WORKDIR /playpen
46 # Install RMr (runtime and dev) from debian package cached on packagecloud.io
47 ARG RMR_VER=4.8.5
48
49 # if package cloud is actually working, this is preferred
50 #
51 #RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr_${RMR_VER}_amd64.deb/download.deb
52 #RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr-dev_${RMR_VER}_amd64.deb/download.deb
53 #RUN dpkg -i rmr_${RMR_VER}_amd64.deb
54 #RUN dpkg -i rmr-dev_${RMR_VER}_amd64.deb
55 #
56 # else this:
57 #
58 COPY ${SRC}/build_rmr.sh /playpen/bin
59 RUN bash /playpen/bin/build_rmr.sh -t ${RMR_VER}
60
61 #building cpprestsdk
62 RUN apt-get install -y libcpprest-dev
63
64 RUN apt-get install -y  g++ git libboost-atomic-dev libboost-thread-dev libboost-system-dev libboost-date-time-dev libboost-regex-dev libboost-filesystem-dev libboost-random-dev libboost-chrono-dev libboost-serialization-dev libwebsocketpp-dev openssl libssl-dev ninja-build zlib1g-dev
65
66 RUN git clone https://github.com/Microsoft/cpprestsdk.git casablanca && \
67     cd casablanca && \
68     mkdir build && \
69     cd build && \
70     cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=OFF -DBUILD_SAMPLES=OFF -DCMAKE_INSTALL_PREFIX=/usr/local .. && \
71     ninja && \
72     ninja install && \
73     cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=0 -DBUILD_TESTS=OFF -DBUILD_SAMPLES=OFF -DCMAKE_INSTALL_PREFIX=/usr/local .. && \
74     ninja && \
75     ninja install && \
76     rm -rf casablanca
77 #installing all dependicies for pistache
78 RUN apt-get update && apt-get install -y cmake gcc make \
79 git g++ wget meson libcurl4-openssl-dev libssl-dev pkg-config ninja-build
80
81  RUN git clone https://github.com/Tencent/rapidjson && \
82       cd rapidjson && \
83      mkdir build && \
84      cd build && \
85     cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. && \
86    make install && \
87     cd ../../
88         #rm -rf rapidjson
89
90 #building and installing pistache
91 RUN git clone https://github.com/pistacheio/pistache.git
92 RUN cd pistache && \
93         meson setup build \
94     --buildtype=release \
95     -DPISTACHE_USE_SSL=true \
96     -DPISTACHE_BUILD_EXAMPLES=true \
97     -DPISTACHE_BUILD_TESTS=true \
98     -DPISTACHE_BUILD_DOCS=false \
99     --prefix="/usr/local"
100 RUN cd pistache/build && \
101         ninja && \
102         ninja install
103 RUN cp /usr/local/lib/x86_64-linux-gnu/libpistache* /usr/local/lib/
104 RUN cp /usr/local/lib/x86_64-linux-gnu/pkgconfig/libpistache.pc /usr/local/lib/pkgconfig
105
106 #install nlohmann json
107 RUN git clone https://github.com/nlohmann/json.git && cd json && cmake . && make install
108
109 #install json-schema-validator
110 RUN git clone https://github.com/pboettch/json-schema-validator.git && cd json-schema-validator &&mkdir build &&cd build && cmake .. && make install
111
112 #copy the content as git repo inside the container.
113 #COPY ${SRC}/CMakeLists.txt /playpen/factory/
114 #COPY ${SRC}/src /playpen/factory/src/
115 #COPY ${SRC}/test /playpen/factory/test/
116 COPY ${SRC}/examples /tmp/examples/
117 COPY . /playpen/factory
118
119
120 # Go to the factory and build our stuff
121 #
122 ENV LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib
123 ENV C_INCLUDE_PATH=/usr/local/include
124 RUN cd /playpen/factory; rm -fr .build; mkdir .build; cd .build; cmake .. -DDEV_PKG=1; make install; cmake .. -DDEV_PKG=0; make install
125
126
127
128
129 #
130 # Run unit tests will come after building process
131 #
132 COPY ${SRC}/test/* /playpen/factory/test/
133 RUN cd /playpen/factory/test; bash unit_test.sh
134
135
136 # -----  final, smaller image ----------------------------------
137 #FROM ubuntu:20.04
138 FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu20-c-go:1.0.0
139 # must add compile tools to make it a builder environmnent. If a build environment isn't needed 
140 # comment out the next line and reduce the image size by more than 180M.
141 #
142 RUN apt-get update && apt-get install -y --no-install-recommends make g++
143
144 # if bash doesn't cut it for run_replay grab a real shell and clean up as much as we can
145 #RUN apt-get update; apt-get install -y ksh
146 RUN rm -fr /var/lib/apt/lists 
147
148 RUN mkdir -p /usr/local/include/ricxfcpp
149 COPY --from=buildenv /usr/local/lib /usr/local/lib/
150 COPY --from=buildenv /usr/local/include/ricxfcpp /usr/local/include/ricxfcpp/
151 COPY --from=buildenv /usr/local/include/rmr /usr/local/include/rmr/
152 COPY --from=buildenv /usr/local/include/cpprest /usr/local/include/cpprest/
153 COPY --from=buildenv /usr/local/include/pplx /usr/local/include/pplx/
154 COPY --from=buildenv /usr/local/include/pistache /usr/local/include/pistache/
155
156 ENV LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib
157 ENV C_INCLUDE_PATH=/usr/local/include
158 WORKDIR /factory
159
160 CMD [ "make" ]
161