X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=examples%2FDockerfile-Pong;fp=examples%2FDockerfile-Pong;h=03d768aa67953af2bc175eb72e0335afc72d1456;hb=2407cdc0fd08abf96999473f172acbe23bc2af33;hp=4dfe71d4b3260634296f35557407976bbce6e7c6;hpb=e2e3e435babf3aeb8c1bae14ad2a055d02bee38a;p=ric-plt%2Fxapp-frame-py.git diff --git a/examples/Dockerfile-Pong b/examples/Dockerfile-Pong index 4dfe71d..03d768a 100644 --- a/examples/Dockerfile-Pong +++ b/examples/Dockerfile-Pong @@ -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