From f9a47c32a2ef33a1c4614e339a30b2061dce1cae Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Mon, 17 Aug 2020 22:38:21 +0800 Subject: [PATCH] Fixed typo --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 45956ba..e0ae27a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,7 +27,7 @@ spec: stage('Build with Kaniko') { git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-db-sidecar.git', credentialsId: 'jenkins-to-git' container('kaniko') { - sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache-false --destination=harbor.ervine.dev/public/x86_64/alpine/db-sidecar:v3.12 --destination=harbor.ervine.dev/public/x86_64/alpine/db-sidecar:v3.12.0' + sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/alpine/db-sidecar:v3.12 --destination=harbor.ervine.dev/public/x86_64/alpine/db-sidecar:v3.12.0' } } }