From 9ab54c69cbb07e32bc86302725cc9beba185d40f Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Fri, 20 Nov 2020 16:42:48 +0800 Subject: [PATCH] Use dev image name --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 534a88d..d4c580c 100755 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,7 +27,7 @@ spec: stage('Build with Kaniko') { git branch: 'dev', url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-hockey.git', credentialsId: 'jenkins-to-git' container('kaniko') { - sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/hockey:v3.12.1 --destination=harbor.ervine.dev/public/x86_64/alpine/hockey:v3.12' + sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/hockey-dev:v3.12.1 --destination=harbor.ervine.dev/public/x86_64/alpine/hockey-dev:v3.12' } } }