X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=examples%2FDockerfile-Pong;h=8013e90a93d558d3e698e12571b385b767672d6d;hb=refs%2Fheads%2Fbronze;hp=03d768aa67953af2bc175eb72e0335afc72d1456;hpb=2407cdc0fd08abf96999473f172acbe23bc2af33;p=ric-plt%2Fxapp-frame-py.git diff --git a/examples/Dockerfile-Pong b/examples/Dockerfile-Pong index 03d768a..8013e90 100644 --- a/examples/Dockerfile-Pong +++ b/examples/Dockerfile-Pong @@ -17,7 +17,7 @@ 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/ +COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:4.0.5 /usr/local/lib64/librmr* /usr/local/lib64/ # RMR setup RUN mkdir -p /opt/route/ COPY test_route.rt /opt/route/test_route.rt @@ -28,7 +28,7 @@ ENV RMR_SEED_RT /opt/route/test_route.rt RUN apk update && apk add gcc musl-dev bash # Install -RUN pip install ricxappframe==0.6.0 +RUN pip install ricxappframe COPY pong_xapp.py . # Run