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}"
--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
"""
}