Jenkinsfile

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

8
Jenkinsfile vendored
View file

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