diff options
author | Leigh, Phillip (pl876u) <phillip.leigh@amdocs.com> | 2018-11-05 16:45:07 -0500 |
---|---|---|
committer | Leigh, Phillip (pl876u) <phillip.leigh@amdocs.com> | 2018-11-05 16:45:16 -0500 |
commit | fb18254634aebf89b0a282cca3b5a9b6445aa62a (patch) | |
tree | 940339ae4e1f733e5234f5870a7668f8f9f7b116 | |
parent | f89c1bcff5e9f6988cec282ce3cb1b8b44543108 (diff) |
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) <phillip.leigh@amdocs.com>
-rw-r--r-- | src/main/docker/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
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"] |