From e7b6440a947b2b0b6e29cf3d38a948158321b058 Mon Sep 17 00:00:00 2001 From: Brady-Malott <55215446+Brady-Malott@users.noreply.github.com> Date: Sun, 26 Feb 2023 21:42:40 -0500 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 41851f4..1197257 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,7 @@ pipeline { // Deploy new container sh 'docker run --name microblog -d -p 5000:5000 --rm microblog:latest' // Remove all images except for jenkins - sh 'docker image prune -a --filter "label!=org.opencontainers.image.vendor=Jenkins project"' + sh 'docker image prune -af --filter "label!=org.opencontainers.image.vendor=Jenkins project"' } } stage('Selenium Tests') {