From 9dbd708f3c157b7c9cf65f05395656a8f6cf48ec Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Mon, 27 Jul 2020 21:59:02 +0800 Subject: [PATCH] Fixed build and publish --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index fe2411a..950e21a 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-tautulli.git', credentialsId: 'jenkins-to-git' container('kaniko') { - sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/library/x86_64/alpine/tautulli:2.5.3 --destination=harbor.ervine.dev/library/x86_64/alpine/tautulli:2.5' + sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/library/x86_64/alpine/tautulli:2.5.3 --destination=harbor.ervine.dev/library/x86_64/alpine/tautulli:2.5 --destination=harbor.ervine.dev/public/x86_64/alpine/tautulli:v2.5.3 --destination=harbor.ervine.dev/public/x86_64/alpine/tautulli:v2.5' } } }