From: Leigh, Phillip (pl876u) Date: Mon, 5 Nov 2018 21:45:07 +0000 (-0500) Subject: BugFix:CtxAggr doesn't pick up events-CtxAggr chg2 X-Git-Tag: 1.3.3~2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=fb18254634aebf89b0a282cca3b5a9b6445aa62a;p=logging-analytics%2Fpomba%2Fpomba-context-aggregator.git BugFix:CtxAggr doesn't pick up events-CtxAggr chg2 The root cause is due to the DMaap topic wasn't created on a freshly deployed system. The solution is to create the topics needed by POMBA. Issue-ID: LOG-794 Change-Id: I350b1a81f492d53cb27316612639ba9494c00325 Signed-off-by: Leigh, Phillip (pl876u) --- diff --git a/src/main/docker/Dockerfile b/src/main/docker/Dockerfile index 58aaeee..ad64f1d 100644 --- a/src/main/docker/Dockerfile +++ b/src/main/docker/Dockerfile @@ -15,5 +15,6 @@ ADD startService.sh $MICROSERVICE_HOME/bin/ RUN chmod 755 $MICROSERVICE_HOME/config/* RUN chmod 755 $MICROSERVICE_HOME/lib/* RUN chmod 755 $MICROSERVICE_HOME/bin/* +RUN apk --no-cache add curl CMD ["/opt/app/bin/startService.sh"]