From: Michal Jagiello Date: Wed, 1 Feb 2023 13:25:41 +0000 (+0000) Subject: [INTEGRAION][Testsuite] Add '--no-cache' flag to docker build command X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=b4f98de1934705d928e4ade445c3c1f0e2c01389;p=ci-management.git [INTEGRAION][Testsuite] Add '--no-cache' flag to docker build command Do not use cache on docker build command as with it not always the latest changes were used to build an image Issue-ID: TEST-390 Signed-off-by: Michal Jagiello Change-Id: I560d3f17860a2bf50caa743ee55d8f56d7fc1660 --- diff --git a/jjb/testsuite/testsuite-docker.sh b/jjb/testsuite/testsuite-docker.sh index ca5e95aba..2ac64365e 100644 --- a/jjb/testsuite/testsuite-docker.sh +++ b/jjb/testsuite/testsuite-docker.sh @@ -2,7 +2,7 @@ # echo '============== CALLING SCRIPT TO CREATE DOCKER IMAGES =================' cp $WORKSPACE/docker/* . -docker -D build -t onap/testsuite . +docker -D build --no-cache -t onap/testsuite . export REPO="nexus3.onap.org:10003" DATETIME_STAMP=$(date +%Y%m%dT%H%M%S)