bc5cd93564daa3357ff15031753fb960f28b86c4
[it/dev.git] / bldr-imgs / bldr-alpine3-rmr / Dockerfile
1 # ==================================================================================
2 #       Copyright (c) 2020 Nokia
3 #       Copyright (c) 2020 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 # Provides RMR for Alpine including header files and shared-object libraries,
19 # basically a workaround for missing APK support at PackageCloud.io.
20 # Unlike other bldr- images, this only has library files, no build tools.
21 # See list of available files below.  Use the following command to copy a file
22 # in a Docker build, after replacing "TAG" with the desired version string:
23 #
24 # COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:TAG /usr/local/lib64/librmr* /usr/local/lib64/
25 #
26 # /usr/local/bin:
27 #     rmr_probe
28 #
29 # /usr/local/include/rmr:
30 #     RIC_message_types.h
31 #     rmr.h
32 #     rmr_logging.h
33 #     rmr_symtab.h
34 #
35 # /usr/local/lib64:
36 #     librmr_si.a
37 #     librmr_si.so
38 #     librmr_si.so.4         (subject to version change)
39 #     librmr_si.so.4.0.2     (subject to version change)
40
41 FROM alpine:3.11 as bldr
42 RUN apk update && apk add autoconf automake build-base cmake libtool pkgconfig git sudo
43 RUN git clone --branch 4.9.0 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \
44     && cd rmr \
45     && mkdir .build; cd .build \
46     && echo "<<<installing rmr devel headers>>>" \
47     && cmake .. -DDEV_PKG=1; make install \
48     && echo "<<< installing rmr .so>>>" \
49     && cmake .. -DDEV_PKG=0; make install
50
51 FROM scratch
52 COPY --from=bldr /usr/local/bin/rmr* /usr/local/bin/
53 COPY --from=bldr /usr/local/include/rmr /usr/local/include/rmr
54 COPY --from=bldr /usr/local/lib64/librmr* /usr/local/lib64/