Introduced a parameter to force a build in the helper-scirpt README.sh
[demos/kafka/deduplication] / README.sh
index 3b0e897..b71031c 100755 (executable)
--- a/README.sh
+++ b/README.sh
@@ -8,10 +8,10 @@ then
   exit
 fi
 
-if [[ $(docker image ls -q juplo/deduplicator:streams) == "" ]]
+if [[ $(docker image ls -q juplo/deduplicator:streams) == "" || "$1" = "build" ]]
 then
-  mvn package
-  docker build -t juplo/deduplicator:streams .
+  mvn package || exit
+  docker build -t juplo/deduplicator:streams . || exit
 else
   echo "Using image existing image:"
   docker image ls juplo/deduplicator:streams