Maybe colorize output
All checks were successful
Homelab/java-spring-microservice/pipeline/head This commit looks good

This commit is contained in:
Jim Nicholson 2021-12-23 10:53:55 -08:00
parent 6adddc6d6c
commit d5f46a5d0c

4
Jenkinsfile vendored
View File

@ -29,9 +29,8 @@ podTemplate(label: label, containers: [
} }
container('kaniko') { container('kaniko') {
stage('Image') { stage('Image') {
ansiColor('xterm') {
sh ''' sh '''
pwd
ls
/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --insecure --skip-tls-verify --cache=true --destination=docker.home.thejimnicholson.com/servicedemo/test:latest /kaniko/executor -f `pwd`/Dockerfile -c `pwd` --insecure --skip-tls-verify --cache=true --destination=docker.home.thejimnicholson.com/servicedemo/test:latest
''' '''
} }
@ -39,3 +38,4 @@ podTemplate(label: label, containers: [
} }
} }
} }
}