diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..5b238f72b --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,12 @@ +pipeline { + agent { label 'worker1' } + stages { + stage('Docker Build') { + steps { + sh 'docker build -t spring-petclinic:v1 .' + } + } + } + + +}