X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=bldr-imgs%2Fbldr-alpine3-rmr%2FDockerfile;h=cbae8e76206ce5d7fd266767a79af40ff7f44bf2;hb=6437448915de20938eecbaf2422d428209ac959c;hp=dba5f5fb4b03f1deb797c2cf7b3c217a3918f745;hpb=68f787f0b6425b3834d34732df6416feb9b6f144;p=it%2Fdev.git diff --git a/bldr-imgs/bldr-alpine3-rmr/Dockerfile b/bldr-imgs/bldr-alpine3-rmr/Dockerfile old mode 100644 new mode 100755 index dba5f5f..cbae8e7 --- a/bldr-imgs/bldr-alpine3-rmr/Dockerfile +++ b/bldr-imgs/bldr-alpine3-rmr/Dockerfile @@ -21,7 +21,11 @@ # 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 @@ -33,15 +37,15 @@ # 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 "<<>>" \ @@ -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