Update Jenkinsfile

This commit is contained in:
Brady-Malott 2023-02-26 17:50:07 -05:00 committed by GitHub
parent fafa0c646e
commit 6ad72eddc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -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') {