Update Jenkinsfile

added no cache to the docke image
This commit is contained in:
Miriam Baglioni 2024-06-27 18:15:24 +02:00
parent 82ce387e54
commit 1b9c1402a5
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -25,7 +25,7 @@ pipeline {
stage('Building image') {
steps{
script {
dockerImage = docker.build imagename
dockerImage = docker.build imagename, '--no-cache .'
}
}
}