From 914130b70cff0514530f58058a0bdfdf9fcb22dc Mon Sep 17 00:00:00 2001 From: The_Spider Date: Wed, 19 Jan 2022 12:54:36 -0600 Subject: [PATCH] adds support gor build arguments --- vars/functions.groovy | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/vars/functions.groovy b/vars/functions.groovy index dcd61a7..5ff1a55 100644 --- a/vars/functions.groovy +++ b/vars/functions.groovy @@ -53,7 +53,7 @@ def deletePod (Map config) { } } -def buildContainer (Map config) { +def buildContainer (Map config, []String buildArg = []) { def ws = pwd() stage ("Build Container") { container ("kaniko") { @@ -64,11 +64,16 @@ def buildContainer (Map config) { )]) { sh "set +x; printf '{\"auths\":{\"%s\":{\"auth\": \"%s\"}}}' \"${config.repository}\" \"${dcreds.bytes.encodeBase64().toString()}\" > /kaniko/.docker/config.json" } + def buildArguments = "" + for (i in buildArg) { + buildArguments += " --build-arg ${i}" + } sh """ /kaniko/executor \\ --context "${ws}" \\ -f "${ws}/Dockerfile" \\ - --destination "${config.imageDest}" + --destination "${config.imageDest}" \\ + ${buildArguments} """ } }