Update Jenkinsfile

This commit is contained in:
Stas Bezuhlyi 2021-04-08 19:32:35 +03:00 committed by GitHub
parent 8766ed8826
commit 349ad487f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -1,3 +1,5 @@
pipeline {
agent any
environment {
IMAGE_BASE = 'rodley/spring-petclinic'
IMAGE_TAG = "$BUILD_NUMBER"
@ -5,8 +7,6 @@ environment {
IMAGE_NAME_LATEST = "${env.IMAGE_BASE}:latest"
DOCKERFILE_NAME = "Dockerfile"
}
pipeline {
agent any
stages {
stage('Checkout SCM') {