X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=bldr-imgs%2Fbldr-alpine3-go%2FDockerfile;h=54e394edfed0908ba88b87abedc3442096a900f9;hb=refs%2Fchanges%2F13%2F8913%2F4;hp=16bd1acd3147fd2934dd969cdcad12423c7dec24;hpb=aaec3d13d810171cd21e798c21523d18f564702b;p=it%2Fdev.git diff --git a/bldr-imgs/bldr-alpine3-go/Dockerfile b/bldr-imgs/bldr-alpine3-go/Dockerfile index 16bd1ac..54e394e 100644 --- a/bldr-imgs/bldr-alpine3-go/Dockerfile +++ b/bldr-imgs/bldr-alpine3-go/Dockerfile @@ -18,16 +18,17 @@ # Has: # golang 1.13.8 # alpine 3.11 -# rmr 3.x -# Installing this version of rmr also pulls in nng +# rmr 4.4.6 # install a well known working rmr FROM golang:1.13.8-alpine3.11 + RUN apk update && apk add autoconf automake build-base cmake libtool ninja pkgconfig git sudo -RUN git clone --branch 3.6.2 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \ + +RUN git clone --branch 4.4.6 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \ && cd rmr \ && mkdir .build; cd .build \ && echo "<<>>" \ && cmake .. -DDEV_PKG=1; make install \ && echo "<<< installing rmr .so>>>" \ - && cmake .. -DPACK_EXTERNALS=1; make install + && cmake .. -DDEV_PKG=0; make install