Downgrade RMR version in the listener
[ric-app/mc.git] / sidecars / listener / 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 #       Mnemonic:       Dockerfile
20 #       Abstract:       Build file which creaes a runtime image for the listener.
21 #                               Building should be as simple as:
22 #
23 #                                       docker build -f sidecars/listener/Dockerfile -t mc_listener:xx.xx .
24 #
25 #                               Running the image in a container:
26 #                                       The fifo output directory needs to be mounted to the container
27 #                                       e.g.  -v /exports/mcl/fifos:/tmp/mcl/fifos.  The internal
28 #                                       directory can be supplied on the command line using -d path, but
29 #                                       should not be needed.
30 #
31 #                                       The RMR listen port must be properly exposed to the container. The
32 #                                       internal default is 4560, and can be changed with the -p port option
33 #                                       on the command line (needed if running from docker-compose). Typical
34 #                                       exposure might be  -p <host-port>:4560  on the docker run command.
35 #
36 #                                       The MC listener application does NOT need route table updates and thus
37 #                                       there is NO need to expose the route table generator port on this
38 #                                       container.
39 #
40 #       Date:           22 August 2019
41 #       Author:         E. Scott Daniels
42
43
44 # builder images are now in release (10002)
45 FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu18-c-go:1.9.0 as buildenv
46
47 RUN mkdir /playpen
48
49 RUN apt-get update && apt-get install -y cmake gcc make git g++ wget
50
51 WORKDIR /playpen
52 # Install RMr (runtime and dev) from debian package cached on packagecloud.io
53 ARG RMR_VER=4.5.2
54 ARG RMR_PC_REPO=release
55 #ARG RMR_PC_REPO=staging
56
57 RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/${RMR_PC_REPO}/packages/debian/stretch/rmr_${RMR_VER}_amd64.deb/download.deb
58 RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/${RMR_PC_REPO}/packages/debian/stretch/rmr-dev_${RMR_VER}_amd64.deb/download.deb
59 RUN dpkg -i rmr_${RMR_VER}_amd64.deb
60 RUN dpkg -i rmr-dev_${RMR_VER}_amd64.deb
61
62 RUN mkdir -p /playpen/bin /playpen/listener/src /playpen/listener/test
63 ARG SRC=src
64 COPY ${SRC}/*.ksh ${SRC}/Makefile ${SRC}/*.h ${SRC}/*.c /playpen/listener/src/
65 COPY ${SRC}/verify_replay.sh ${SRC}/verify.sh /playpen/listener/src/
66
67 ARG TEST=test
68 COPY ${TEST}/*.ksh ${TEST}/Makefile ${TEST}/*.h ${TEST}/*.c /playpen/listener/test/
69
70 # Build all binaries; verify scripts expect them to be in bin, so we must copy too
71 #
72 ENV LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib
73 ENV C_INCLUDE_PATH=/usr/local/include
74 RUN     cd /playpen/listener/src \
75         &&  make -B all \
76         &&  ls -al mc_listener \
77         &&  cp mc_listener sender pipe_reader rdc_replay rdc_extract /playpen/bin/
78
79 # Run unit tests. If they don't pass the build fails here. Tests can be run from src, but expect binaries in bin
80 # so that they can be run in the final image as well.
81 #
82 ENV PATH /playpen/bin:/playpen/listener/src:$PATH
83 RUN    cd /playpen/listener/test \
84         && ./run_unit_test.ksh
85
86 RUN        cd /playpen/listener/src \
87         && /playpen/listener/src/verify.sh \
88         && /playpen/listener/src/verify_replay.sh
89
90
91 # -----  final, smaller image ----------------------------------
92 FROM ubuntu:18.04
93
94 # bash doesn't cut it for run_replay so grab a real shell and clean up as much as we can
95 RUN apt-get update; apt-get install -y ksh
96 RUN rm -fr /var/lib/apt/lists
97
98 # must have rmr runtime to get health check etc
99 COPY --from=buildenv /playpen/rmr_*.deb /tmp/
100 RUN dpkg -i /tmp/rmr_*_amd64.deb
101
102 ARG SRC=src
103 ARG PPSRC=/playpen/listener/src
104
105 RUN mkdir -p /playpen/bin
106
107 # pull from the huge builder image
108 COPY --from=buildenv /usr/local/lib/* /usr/local/lib/
109 COPY --from=buildenv ${PPSRC}/mc_listener ${PPSRC}/sender ${PPSRC}/pipe_reader ${PPSRC}/rdc_replay ${PPSRC}/rdc_extract /playpen/bin/
110
111 # pull from the source
112 COPY ${SRC}/verify_replay.sh ${SRC}/verify.sh ${SRC}/run_replay.sh /playpen/bin/
113 COPY ${SRC}/help.sh /playpen/bin/help
114
115 RUN chmod 755 /playpen/bin/*
116
117 ENV PATH=/playpen/bin:$PATH
118 ENV LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib
119 ENV C_INCLUDE_PATH=/usr/local/include
120
121 CMD [ "/playpen/bin/mc_listener" ]