diff --git a/first-class-pipeline/src/com/freeleaps/devops/ImageBuilder.groovy b/first-class-pipeline/src/com/freeleaps/devops/ImageBuilder.groovy index 38780359..b852c399 100644 --- a/first-class-pipeline/src/com/freeleaps/devops/ImageBuilder.groovy +++ b/first-class-pipeline/src/com/freeleaps/devops/ImageBuilder.groovy @@ -111,6 +111,8 @@ class ImageBuilder { steps.log.info("ImageBuilder", "Building image ${registry}/${repository}/${name} with architectures: ${architectures} using buildx builder: ${buildxBuilderName}, tag sets to ${version}") def currentPath = steps.sh(script: "pwd", returnStdout: true).trim() steps.log.info("ImageBuilder", "Current working dir: ${currentPath}") + def filesInCurrentDir = steps.sh(script: "ls -la", returnStdout: true).trim() + steps.log.info("ImageBuilder", "Files in current dir: ${filesInCurrentDir}") steps.log.info("ImageBuilder", "Set builder log level to plain...") steps.env.BUILDKIT_PROGRESS = "plain" steps.log.info("ImageBuilder", "Set builder timeout to 10min...")