X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=integration_tests%2Ftestxappcode%2FDockerfile-test-receiver;h=196f2566cd10c8ce980bb9a2e282cf1461cfeb5d;hb=9f30fc12970e991d7ae07c56ce2f7bb559c74698;hp=1d59467cce8b3a61662725f8ec4f8db163b802e7;hpb=2222dfa30b37521fedb89ab9bc058aeaf726b329;p=ric-plt%2Fa1.git diff --git a/integration_tests/testxappcode/Dockerfile-test-receiver b/integration_tests/testxappcode/Dockerfile-test-receiver index 1d59467..196f256 100644 --- a/integration_tests/testxappcode/Dockerfile-test-receiver +++ b/integration_tests/testxappcode/Dockerfile-test-receiver @@ -19,8 +19,8 @@ FROM nexus3.o-ran-sc.org:10004/o-ran-sc/bldr-alpine3:12-a3.11 # copy rmr headers and 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/include/rmr /usr/local/include/rmr -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/include/rmr /usr/local/include/rmr +COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:4.0.5 /usr/local/lib64/librmr* /usr/local/lib64/ # go will complain if there is a go.mod at the root of the GOPATH so we can't. RUN mkdir myxapp @@ -38,7 +38,7 @@ RUN go build -a -installsuffix cgo -o receiver receiver.go FROM alpine:3.11 # 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/ COPY --from=0 /myxapp/receiver . COPY test-config-file.yaml .