dba5f5fb4b03f1deb797c2cf7b3c217a3918f745
[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:10004/bldr-alpine3-rmr:TAG /usr/local/lib64/librmr_si.so /usr/local/lib64/librmr_si.so
25 #
26 # /usr/local/include/rmr:
27 #     RIC_message_types.h
28 #     rmr.h
29 #     rmr_logging.h
30 #     rmr_symtab.h
31 #
32 # /usr/local/lib64:
33 #     librmr_nng.a
34 #     librmr_nng.so
35 #     librmr_nng.so.3        (subject to version change)
36 #     librmr_nng.so.3.8.0    (subject to version change)
37 #     librmr_si.a
38 #     librmr_si.so
39 #     librmr_si.so.3         (subject to version change)
40 #     librmr_si.so.3.8.0     (subject to version change)
41
42 FROM alpine:3.11 as bldr
43 RUN apk update && apk add autoconf automake build-base cmake libtool pkgconfig git sudo
44 RUN git clone --branch 3.8.0 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \
45     && cd rmr \
46     && mkdir .build; cd .build \
47     && echo "<<<installing rmr devel headers>>>" \
48     && cmake .. -DDEV_PKG=1; make install \
49     && echo "<<< installing rmr .so>>>" \
50     && cmake .. -DDEV_PKG=0; make install
51
52 FROM scratch
53 COPY --from=bldr /usr/local/include/rmr /usr/local/include/rmr
54 COPY --from=bldr /usr/local/lib64 /usr/local/lib64