From 1c6e20e7765cd1c5b418957005a0a09c4902cf96 Mon Sep 17 00:00:00 2001 From: Erik Brakkee Date: Sun, 17 Nov 2024 20:53:20 +0100 Subject: [PATCH] now supporting multiple tags --- vars/buildcontainer.groovy | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/vars/buildcontainer.groovy b/vars/buildcontainer.groovy index 0ff43fd..8f7e9fc 100644 --- a/vars/buildcontainer.groovy +++ b/vars/buildcontainer.groovy @@ -30,6 +30,17 @@ def call(Map args) { if (args.mirror) { mirrorArg = "--registry-mirror '${args.mirror}'" } + destinationArgs = "" + if (args.tag instanceof String) { + tags = [args.tag] + } else if (args.tag instanceof List) { + tags = args.tag + } else { + error("'tag' must be either string of list of string") + } + tags.each { + tag -> destinationArgs += "--destination ${args.repo}/${args.image}:${tag} " + } container('kaniko') { sh """ echo "Building container with settings: ${args}" @@ -39,7 +50,7 @@ def call(Map args) { --dockerfile ${args.dockerfile} \\ --cache=${args.cache} --cache-ttl=${args.cachettl} \\ --context \$( pwd )/${args.context} \\ - --destination ${args.repo}/${args.image}:${args.tag} + $destinationArgs rm -rf /kaniko/*[0-9]* && rm -rf /kaniko/Dockerfile && mkdir -p /workspace """ } -- 2.31.1