Unverified Commit 462797f8 authored by prawinkorvi's avatar prawinkorvi Committed by GitHub

Update Jenkinsfile

parent 6e374195
pipeline {
agent any
agent any
tools {
maven 'maven3'
maven 'maven3'
jdk 'JDK8'
}
stages {
stage('Build maven ') {
steps {
sh 'pwd'
sh 'mvn clean install package'
}
}
}
stage('Copy Artifact') {
steps {
sh 'cp -r petclinic-build/target/*.war docker'
}
}
stage('Build docker image') {
steps {
}
}
}
stage('Copy Artifact') {
steps {
sh 'cp -r petclinic-build/target/*.war docker'
}
}
stage('Build docker image') {
steps {
docker.build('prawinkorvi/petclinic-build/docker')
docker.withRegistry('https://registry.hub.docker.com', 'dockerhub') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment