diff --git a/first-class-pipeline/src/com/freeleaps/devops/ImageBuilder.groovy b/first-class-pipeline/src/com/freeleaps/devops/ImageBuilder.groovy index 3450a994..6ab1d1d1 100644 --- a/first-class-pipeline/src/com/freeleaps/devops/ImageBuilder.groovy +++ b/first-class-pipeline/src/com/freeleaps/devops/ImageBuilder.groovy @@ -109,6 +109,8 @@ class ImageBuilder { steps.dir(workspace) { if (buildxBuilderName != null && !buildxBuilderName.isEmpty() && architectures.size() > 1) { steps.log.info("ImageBuilder", "Building image ${registry}/${repository}/${name} with architectures: ${architectures} using buildx builder: ${buildxBuilderName}, tag sets to ${version}") + steps.log.info("ImageBuilder", "Set builder log level to plain...") + steps.env.BUILDKIT_PROGRESS = "plain" steps.sh "docker buildx build --builder ${buildxBuilderName} --platform ${architectures.join(",")} -t ${registry}/${repository}/${name}:${version} -f ${dockerfile} --push ${contextRoot}" } else { architectures.each { architecture ->