X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=examples%2FDockerfile-Ping;fp=examples%2FDockerfile-Ping;h=acb32b8f73ec18ed94ec1e90b9524e1dd5312df0;hb=2407cdc0fd08abf96999473f172acbe23bc2af33;hp=2eac495eb8b0d71f3f06fe056a07ace2ad1d5a03;hpb=e2e3e435babf3aeb8c1bae14ad2a055d02bee38a;p=ric-plt%2Fxapp-frame-py.git diff --git a/examples/Dockerfile-Ping b/examples/Dockerfile-Ping index 2eac495..acb32b8 100644 --- a/examples/Dockerfile-Ping +++ b/examples/Dockerfile-Ping @@ -16,11 +16,11 @@ # ================================================================================== FROM python:3.8-alpine +# copy rmr libraries from builder image in lieu of an Alpine package +COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:4.0.2 /usr/local/lib64/librmr* /usr/local/lib64/ # RMR setup RUN mkdir -p /opt/route/ COPY test_route.rt /opt/route/test_route.rt -# copy rmr .so from builder image in lieu of an Alpine package -COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:3.8.0 /usr/local/lib64/librmr_si.so /usr/local/lib64/librmr_si.so ENV LD_LIBRARY_PATH /usr/local/lib/:/usr/local/lib64 ENV RMR_SEED_RT /opt/route/test_route.rt