Update 'Jenkinsfile'

fix syntax
This commit is contained in:
Roberto Cirillo 2022-04-04 17:50:51 +02:00
parent 54a974728b
commit 000b47c758
1 changed files with 5 additions and 7 deletions

12
Jenkinsfile vendored
View File

@ -22,14 +22,12 @@ pipeline {
}
}
stage('Building image') {
steps{
script {
dockerImage = docker.build imagename
}
steps{
script {
dockerImage = docker.build imagename
}
}
}
}
}
stage('Deploy Image') {
steps{
script {