From b988fc2c591433683f7e5f9760aba9280fbaf01c Mon Sep 17 00:00:00 2001 From: BrokenFire Date: Sun, 18 Feb 2018 19:58:15 +0100 Subject: [PATCH] Revert "Add full clean on Jenkinsfile" This reverts commit e2b76e47b394c790dc38f17430e14080f34ca870. --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5fe270d..1e7a40c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,10 +16,10 @@ node { * Second, the 'latest' tag. * Pushing multiple tags is cheap, as all the layers are reused. */ app.push() - app.push("${env.BUILD_NUMBER}") + app.push("${env.BUILD_NUMBER}") } stage('Cleaning'){ - sh "docker image prune -f -a" + sh "docker image prune -f" } }