Jenkinsfile

This commit is contained in:
Szabó Barnabás 2018-01-29 23:00:45 +01:00
parent 8aff9e977e
commit 3f928b677f

10
Jenkinsfile vendored
View file

@ -17,13 +17,19 @@ pipeline {
./mvnw clean package -DskipTests -T 2
'''
}
docker.build("loxon/petclinic:2.0.0").push()
}
}
}
stage('Build the image') {
steps {
script {
docker.build("loxon/petclinic:2.0.0").push()
}
}
}
}
}