adding --no-cache to docker build

This commit is contained in:
Mike Aizatsky 2016-10-17 14:42:04 -07:00 committed by GitHub
parent 089add6e8b
commit 7c11d15cdc
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ def call(body) {
.getPath();
}
sh "docker build -t $dockerTag -f $dockerfile $dockerContextDir"
sh "docker build --no-cache -t $dockerTag -f $dockerfile $dockerContextDir"
def revText = groovy.json.JsonOutput.toJson(revisions)
writeFile file: revisionsFile, text: revText