Fix typo in command
Some checks failed
Homelab/java-spring-microservice/pipeline/head There was a failure building this commit

This commit is contained in:
Jim Nicholson 2021-12-22 17:45:11 -08:00
parent cfd0119b7e
commit ff6394dafc

2
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ podTemplate(label: label, containers: [
} }
container('kaniko') { container('kaniko') {
stage('Image') { stage('Image') {
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --insecure --skip-tls-verify --cache-true --destination=docker.thejimnicholson.com/servicedemo/test:latest' sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --insecure --skip-tls-verify --cache=true --destination=docker.thejimnicholson.com/servicedemo/test:latest'
} }
} }
} }