From: Erik Brakkee Date: Sun, 17 Nov 2024 19:53:20 +0000 (+0100) Subject: now supporting multiple tags X-Git-Url: http://wamblee.org/gitweb/?a=commitdiff_plain;h=1c6e20e7765cd1c5b418957005a0a09c4902cf96;p=pipelinelib now supporting multiple tags --- 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 """ }