X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=docker%2Fbldr-debian-python%2FDockerfile;h=1d9a23bdc62907e5f83abaa18f9fb3fae1ddb62e;hb=134c56fd7381f3b84f0f3fe70fb233ff25af9228;hp=c7c581188ac5107f87cd7395309e2be87c66d000;hpb=66a126044c9b105e41d8cf359823e66e5c9a43e3;p=ci-management.git diff --git a/docker/bldr-debian-python/Dockerfile b/docker/bldr-debian-python/Dockerfile index c7c58118..1d9a23bd 100644 --- a/docker/bldr-debian-python/Dockerfile +++ b/docker/bldr-debian-python/Dockerfile @@ -35,8 +35,12 @@ RUN wget -nv https://github.com/ninja-build/ninja/releases/download/v1.9.0/ninja && chmod +x ninja \ && mv ninja /usr/local/bin -RUN git clone --branch v1.1.1 https://github.com/nanomsg/nng.git \ +# 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 git clone https://github.com/nanomsg/nng.git \ && cd nng \ + && git checkout e618abf8f3db2a94269a79c8901a51148d48fcc2 \ && mkdir build \ && cd build \ && cmake -DBUILD_SHARED_LIBS=1 -G Ninja .. \