adds support gor build arguments

This commit is contained in:
Hyatt 2022-01-19 12:54:36 -06:00
parent 8d079dbafd
commit 914130b70c
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -53,7 +53,7 @@ def deletePod (Map config) {
} }
} }
def buildContainer (Map config) { def buildContainer (Map config, []String buildArg = []) {
def ws = pwd() def ws = pwd()
stage ("Build Container") { stage ("Build Container") {
container ("kaniko") { 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" 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 """ sh """
/kaniko/executor \\ /kaniko/executor \\
--context "${ws}" \\ --context "${ws}" \\
-f "${ws}/Dockerfile" \\ -f "${ws}/Dockerfile" \\
--destination "${config.imageDest}" --destination "${config.imageDest}" \\
${buildArguments}
""" """
} }
} }