From 6ad72eddc0434839b5bc8c3f082a426bb43f9df0 Mon Sep 17 00:00:00 2001 From: Brady-Malott <55215446+Brady-Malott@users.noreply.github.com> Date: Sun, 26 Feb 2023 17:50:07 -0500 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 75429b3..252b227 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ pipeline { // Deploy new container sh 'docker run --name microblog -d -p 5000:5000 --rm microblog:latest' // Remove all images that don't have a container running them - sh 'docker image prune -a' + sh 'docker image prune --filter "label=org.opencontainers.image.vendor=Jenkins project"' } } stage('Selenium Tests') {