X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=docker%2Fbldr-alpine3%2FDockerfile;h=499e1675848a3de40046c05cbfb2a6dec3545e62;hb=ad81f6222a99fc357790b56653845775ab3bab3b;hp=44abe56b340c6a6c5c4d2590d259d61998cc73de;hpb=c5c8679a5dd17c794f58213bd28b25582d351164;p=ci-management.git diff --git a/docker/bldr-alpine3/Dockerfile b/docker/bldr-alpine3/Dockerfile index 44abe56b..499e1675 100644 --- a/docker/bldr-alpine3/Dockerfile +++ b/docker/bldr-alpine3/Dockerfile @@ -50,10 +50,13 @@ RUN cd /tmp \ && cp /tmp/autoconf-archive/m4/* /usr/share/aclocal \ && rm -rf /tmp/autoconf-archive -# NNG, version is pinned +# NNG repo is not frequently tagged so it's pinned to a commit hash. +# This commit provides fix to the proxy-reconnect +# bug that we identified: https://github.com/nanomsg/nng/issues/970 RUN cd /tmp \ - && git clone --branch v1.1.1 https://github.com/nanomsg/nng.git \ + && git clone https://github.com/nanomsg/nng.git \ && cd nng \ + && git checkout e618abf8f3db2a94269a79c8901a51148d48fcc2 \ && mkdir build \ && cd build \ && cmake -DBUILD_SHARED_LIBS=1 -G Ninja .. \ @@ -71,7 +74,7 @@ RUN cd /tmp \ # RMR, version is pinned RUN cd /tmp \ - && git clone --branch 1.0.45 https://gerrit.o-ran-sc.org/r/ric-plt/lib/rmr \ + && git clone --branch 1.3.0 https://gerrit.o-ran-sc.org/r/ric-plt/lib/rmr \ && cd rmr \ && mkdir build \ && cd build \