Update Jenkinsfile

This commit is contained in:
A-hash-bit 2022-08-16 10:10:23 +05:30 committed by GitHub
parent dbf3ce33fa
commit 6586b04dfc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
Jenkinsfile vendored
View file

@ -23,7 +23,13 @@ pipeline{
sh "mvn clean package"
}
}
stage('Docker Build') {
agent any
steps {
echo "========executing docker build========"
sh 'docker build -t amar/petclinic:latest .'
}
}
}
post{