Update Jenkinsfile

This commit is contained in:
mMate89 2023-05-04 14:28:48 +02:00 committed by GitHub
parent 6826d5948f
commit cf7e8cdc7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,12 @@
pipeline {
agent { label 'worker1' }
stages {
stage('Docker Build') {
steps {
sh 'docker build -t spring-petclinic:v1 .'
}
}
}
}