X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=integration_tests%2Ftestxappcode%2FDockerfile-query-receiver;h=ce861b6e8d7ec0b76bf111f5dd3412f7497e383a;hb=9640e5bf05192f4a614f519934802fbe31865fed;hp=20fb08231854f5b9fb5d8525571d5953b4d9828f;hpb=78ba273b279a7e7af6dba811a29746b881a53a8e;p=ric-plt%2Fa1.git diff --git a/integration_tests/testxappcode/Dockerfile-query-receiver b/integration_tests/testxappcode/Dockerfile-query-receiver old mode 100644 new mode 100755 index 20fb082..ce861b6 --- a/integration_tests/testxappcode/Dockerfile-query-receiver +++ b/integration_tests/testxappcode/Dockerfile-query-receiver @@ -16,8 +16,7 @@ # ================================================================================== # This Dockerfile uses a two stage Docker build - -FROM nexus3.o-ran-sc.org:10004/bldr-alpine3-go:1-rmr1.13.1 +FROM nexus3.o-ran-sc.org:10004/bldr-alpine3:10-a3.11-rmr3 # go will complain if there is a go.mod at the root of the GOPATH so we can't. RUN mkdir myxapp @@ -33,9 +32,11 @@ RUN go build -a -installsuffix cgo -o receiver receiver.go # 2nd stage FROM alpine:3.11 -COPY --from=0 /usr/local/lib64/libnng.so* /usr/local/lib64/ -COPY --from=0 /usr/local/lib64/librmr_nng* /usr/local/lib64/ -COPY --from=0 /go/myxapp/receiver . + +# 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 + +COPY --from=0 /myxapp/receiver . COPY query-config-file.yaml . # rmr setup