Improve alpine base builder images
[it/dev.git] / bldr-imgs / bldr-alpine3-rmr / Dockerfile
old mode 100644 (file)
new mode 100755 (executable)
index dba5f5f..cbae8e7
 # See list of available files below.  Use the following command to copy a file
 # in a Docker build, after replacing "TAG" with the desired version string:
 #
-# COPY --from=nexus3.o-ran-sc.org:10004/bldr-alpine3-rmr:TAG /usr/local/lib64/librmr_si.so /usr/local/lib64/librmr_si.so
+# COPY --from=nexus3.o-ran-sc.org:10002/bldr-alpine3-rmr:TAG /usr/local/lib64/librmr_si.so /usr/local/lib64/librmr_si.so
+#
+# /usr/local/bin:
+#     health_ck
+#     rmr_probe
 #
 # /usr/local/include/rmr:
 #     RIC_message_types.h
 #     librmr_nng.a
 #     librmr_nng.so
 #     librmr_nng.so.3        (subject to version change)
-#     librmr_nng.so.3.8.0    (subject to version change)
+#     librmr_nng.so.3.8.2    (subject to version change)
 #     librmr_si.a
 #     librmr_si.so
 #     librmr_si.so.3         (subject to version change)
-#     librmr_si.so.3.8.0     (subject to version change)
+#     librmr_si.so.3.8.2     (subject to version change)
 
 FROM alpine:3.11 as bldr
 RUN apk update && apk add autoconf automake build-base cmake libtool pkgconfig git sudo
-RUN git clone --branch 3.8.0 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \
+RUN git clone --branch 3.8.2 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \
     && cd rmr \
     && mkdir .build; cd .build \
     && echo "<<<installing rmr devel headers>>>" \
@@ -50,5 +54,6 @@ RUN git clone --branch 3.8.0 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \
     && cmake .. -DDEV_PKG=0; make install
 
 FROM scratch
+COPY --from=bldr /usr/local/bin /usr/local/bin
 COPY --from=bldr /usr/local/include/rmr /usr/local/include/rmr
 COPY --from=bldr /usr/local/lib64 /usr/local/lib64