2 #==================================================================================
3 # Copyright (c) 2018-2019 AT&T Intellectual Property.
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
9 # http://www.apache.org/licenses/LICENSE-2.0
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 #==================================================================================
19 # --------------------------------------------------------------------------------------
20 # Mnemonic: Dockerfile
21 # Abstract: This dockerfile is used to create an image that can be used to
22 # run the traffic steering xAPP in a container.
24 # Building should be as simple as:
26 # docker build -f Dockerfile -t ric-app-ts:[version]
29 # Author: E. Scott Daniels
30 # --------------------------------------------------------------------------------------
32 # the builder has: git, wget, cmake, gcc/g++, make, python2/3. v7 dropped nng support
34 FROM nexus3.o-ran-sc.org:10004/o-ran-sc/bldr-ubuntu18-c-go:8-u18.04 as buildenv
36 # spaces to save things in the build image to copy to final image
37 RUN mkdir -p /playpen/assets /playpen/src /playpen/bin
42 # versions we snarf from package cloud
47 # package cloud urls for wget
48 ARG PC_REL_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch
49 ARG PC_STG_URL=https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch
52 RUN wget -nv --content-disposition ${PC_REL_URL}/rmr_${RMR_VER}_amd64.deb/download.deb && \
53 wget -nv --content-disposition ${PC_REL_URL}/rmr-dev_${RMR_VER}_amd64.deb/download.deb && \
54 dpkg -i rmr_${RMR_VER}_amd64.deb rmr-dev_${RMR_VER}_amd64.deb
56 # pull in xapp framework c++
57 RUN wget -nv --content-disposition ${PC_STG_URL}/ricxfcpp-dev_${XFCPP_VER}_amd64.deb/download.deb && \
58 wget -nv --content-disposition ${PC_STG_URL}/ricxfcpp_${XFCPP_VER}_amd64.deb/download.deb && \
59 dpkg -i ricxfcpp-dev_${XFCPP_VER}_amd64.deb ricxfcpp_${XFCPP_VER}_amd64.deb
61 # snarf up SDL dependencies, then pull SDL package and install
63 RUN apt-get install -y libboost-filesystem1.65.1 libboost-system1.65.1 libhiredis0.13
64 RUN wget -nv --content-disposition ${PC_STG_URL}/sdl_${SDL_VER}-1_amd64.deb/download.deb && \
65 wget -nv --content-disposition ${PC_STG_URL}/sdl-dev_${SDL_VER}-1_amd64.deb/download.deb &&\
66 dpkg -i sdl-dev_${SDL_VER}-1_amd64.deb sdl_${SDL_VER}-1_amd64.deb
70 # build and install the application(s)
73 RUN cd /playpen/src && \
80 # non-programme things that we need to push to final image
82 COPY assets/bootstrap.rt /playpen/assets
85 # any scripts that are needed; copy to /playpen/bin
90 # ----- create final, smaller, image ----------------------------------
93 RUN rm -fr /var/lib/apt/lists
95 # snarf the various sdl, rmr, and cpp-framework libraries as well as any binaries
96 # created (e.g. rmr_rprobe) and the application binary itself
98 COPY --from=buildenv /usr/local/lib /usr/local/lib/
99 COPY --from=buildenv /usr/local/bin/rmr_probe /usr/local/bin/ts_xapp /usr/local/bin/
100 COPY --from=buildenv /playpen/bin /usr/local/bin/
101 COPY --from=buildenv /playpen/assets /data
104 ENV PATH=/usr/local/bin:$PATH
105 ENV LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib
108 COPY --from=buildenv /playpen/assets/* /data
110 # if needed, set RMR vars
111 ENV RMR_SEED_RT=/data/bootstrap.rt
112 #ENV RMR_RTG_SVC=rm-host:port
113 ENV RMR_VCTL_FILE=/tmp/rmr.v
114 RUN echo "2" >/tmp/rmr.v
116 CMD [ "/usr/local/bin/ts_xapp" ]