| # vim: ts=4 sw=4 noet: |
| #================================================================================== |
| # Copyright (c) 2018-2019 AT&T Intellectual Property. |
| # |
| # Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 |
| # |
| # 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. |
| #================================================================================== |
| |
| |
| # -------------------------------------------------------------------------------------- |
| # Mnemonic: Dockerfile |
| # Abstract: This can be used to create a base environment for using the xAPP |
| # framework. It will install RMR and the framework libraries. It also |
| # installs make and g++ so that it can be used as a builder environment. |
| # |
| # The unit tests are executed as a part of the build process; if they are |
| # not passing then the build will fail. |
| # |
| # Building should be as simple as: |
| # |
| # docker build -f Dockerfile -t ricxfcpp:[version] |
| # |
| # Date: 23 March 2020 |
| # Author: E. Scott Daniels |
| # -------------------------------------------------------------------------------------- |
| |
| |
| FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu20-c-go:1.0.0 as buildenv |
| RUN mkdir /playpen |
| |
| RUN apt-get update && apt-get install -y cmake gcc make git g++ wget |
| |
| RUN mkdir /playpen/bin /playpen/factory /playpen/factory/src /playpen/factory/test |
| ARG SRC=. |
| |
| WORKDIR /playpen |
| # Install RMr (runtime and dev) from debian package cached on packagecloud.io |
| ARG RMR_VER=4.9.4 |
| |
| # if package cloud is actually working, this is preferred |
| # |
| #RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr_${RMR_VER}_amd64.deb/download.deb |
| #RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr-dev_${RMR_VER}_amd64.deb/download.deb |
| #RUN dpkg -i rmr_${RMR_VER}_amd64.deb |
| #RUN dpkg -i rmr-dev_${RMR_VER}_amd64.deb |
| # |
| # else this: |
| # |
| COPY ${SRC}/build_rmr.sh /playpen/bin |
| RUN bash /playpen/bin/build_rmr.sh -t ${RMR_VER} |
| |
| #building cpprestsdk |
| RUN apt-get install -y libcpprest-dev |
| |
| 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 |
| |
| RUN git clone https://github.com/Microsoft/cpprestsdk.git casablanca && \ |
| cd casablanca && \ |
| mkdir build && \ |
| cd build && \ |
| cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=OFF -DBUILD_SAMPLES=OFF -DCMAKE_INSTALL_PREFIX=/usr/local .. && \ |
| ninja && \ |
| ninja install && \ |
| cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=0 -DBUILD_TESTS=OFF -DBUILD_SAMPLES=OFF -DCMAKE_INSTALL_PREFIX=/usr/local .. && \ |
| ninja && \ |
| ninja install && \ |
| rm -rf casablanca |
| #installing all dependicies for pistache |
| RUN apt-get update && apt-get install -y cmake gcc make \ |
| git g++ wget meson libcurl4-openssl-dev libssl-dev pkg-config ninja-build |
| |
| RUN git clone https://github.com/Tencent/rapidjson && \ |
| cd rapidjson && \ |
| mkdir build && \ |
| cd build && \ |
| cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. && \ |
| make install && \ |
| cd ../../ |
| #rm -rf rapidjson |
| |
| #building and installing pistache |
| RUN git clone https://github.com/pistacheio/pistache.git |
| RUN cd pistache && \ |
| git checkout 363629b8804177a1e743cecfb880eed552922729 && \ |
| meson setup build \ |
| --buildtype=release \ |
| -DPISTACHE_USE_SSL=true \ |
| -DPISTACHE_BUILD_EXAMPLES=true \ |
| -DPISTACHE_BUILD_TESTS=true \ |
| -DPISTACHE_BUILD_DOCS=false \ |
| --prefix="/usr/local" |
| RUN cd pistache/build && \ |
| ninja && \ |
| ninja install |
| RUN cp /usr/local/lib/x86_64-linux-gnu/libpistache* /usr/local/lib/ |
| RUN cp /usr/local/lib/x86_64-linux-gnu/pkgconfig/libpistache.pc /usr/local/lib/pkgconfig |
| |
| #install nlohmann json |
| RUN git clone https://github.com/nlohmann/json.git && cd json && cmake . && make install |
| |
| #install json-schema-validator |
| RUN git clone https://github.com/pboettch/json-schema-validator.git && cd json-schema-validator && git checkout cae6fad80001510077a7f40e68477a31ec443add &&mkdir build &&cd build && cmake .. && make install |
| |
| #copy the content as git repo inside the container. |
| #COPY ${SRC}/CMakeLists.txt /playpen/factory/ |
| #COPY ${SRC}/src /playpen/factory/src/ |
| #COPY ${SRC}/test /playpen/factory/test/ |
| COPY ${SRC}/examples /tmp/examples/ |
| COPY . /playpen/factory |
| |
| |
| # Go to the factory and build our stuff |
| # |
| ENV LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib |
| ENV C_INCLUDE_PATH=/usr/local/include |
| RUN cd /playpen/factory; rm -fr .build; mkdir .build; cd .build; cmake .. -DDEV_PKG=1; make install; cmake .. -DDEV_PKG=0; make install |
| |
| |
| |
| |
| # |
| # Run unit tests will come after building process |
| # |
| COPY ${SRC}/test/* /playpen/factory/test/ |
| RUN cd /playpen/factory/test; bash unit_test.sh |
| |
| |
| # ----- final, smaller image ---------------------------------- |
| #FROM ubuntu:20.04 |
| FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu20-c-go:1.0.0 |
| # must add compile tools to make it a builder environmnent. If a build environment isn't needed |
| # comment out the next line and reduce the image size by more than 180M. |
| # |
| RUN apt-get update && apt-get install -y --no-install-recommends make g++ |
| |
| # if bash doesn't cut it for run_replay grab a real shell and clean up as much as we can |
| #RUN apt-get update; apt-get install -y ksh |
| RUN rm -fr /var/lib/apt/lists |
| |
| RUN mkdir -p /usr/local/include/ricxfcpp |
| COPY --from=buildenv /usr/local/lib /usr/local/lib/ |
| COPY --from=buildenv /usr/local/include/ricxfcpp /usr/local/include/ricxfcpp/ |
| COPY --from=buildenv /usr/local/include/rmr /usr/local/include/rmr/ |
| COPY --from=buildenv /usr/local/include/cpprest /usr/local/include/cpprest/ |
| COPY --from=buildenv /usr/local/include/pplx /usr/local/include/pplx/ |
| COPY --from=buildenv /usr/local/include/pistache /usr/local/include/pistache/ |
| |
| ENV LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib |
| ENV C_INCLUDE_PATH=/usr/local/include |
| WORKDIR /factory |
| |
| CMD [ "make" ] |
| |