adds force flag for kaniko changes

This commit is contained in:
Hyatt 2022-05-26 19:14:27 -05:00
parent 9a10b9a5f4
commit 63665f0db6
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -62,6 +62,7 @@ def buildContainer (Map config, List buildArg = []) {
}
sh """
/kaniko/executor \\
--force \\
--context "${ws}" \\
-f "${ws}/Dockerfile" \\
--destination "${config.imageDest}" \\
@ -95,6 +96,7 @@ def buildContainerMultipleDestinations (Map config, List buildArg = []) {
sh """
/kaniko/executor \\
--force \\
--context "${ws}" \\
-f "${ws}/Dockerfile" \\
${buildArguments}