From 7c11d15cdc0ab61941534de043dd3bed8fb30430 Mon Sep 17 00:00:00 2001 From: Mike Aizatsky Date: Mon, 17 Oct 2016 14:42:04 -0700 Subject: [PATCH] adding --no-cache to docker build --- infra/libfuzzer-pipeline.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/libfuzzer-pipeline.groovy b/infra/libfuzzer-pipeline.groovy index 99e7cf43f..8cb1460ea 100644 --- a/infra/libfuzzer-pipeline.groovy +++ b/infra/libfuzzer-pipeline.groovy @@ -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