thiagoelg commented on PR #3439: URL: https://github.com/apache/incubator-kie-tools/pull/3439#issuecomment-3898924763
Seems to be a bug with `docker-squash` or `cekit` itself. If the squashed image is larger than the original, the squashed image is not saved to the store, but the original is removed anyway. Possibly related to the Docker API update in the latest `ubuntu` GitHub action runner image (see https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20260209.23, Docker Client was updated). Also, https://github.com/apache/incubator-kie-tools/actions/runs/21990138087/job/63539065190#step:13:13323 and https://github.com/apache/incubator-kie-tools/actions/runs/21990138087/job/63539065190#step:13:13323 show the suspect logs. Disabling squashing for the `@kie/kogito-base-builder-image` does the trick: ```diff - "image:build:darwin:linux": "pnpm setup:env make -C ./build build", + "image:build:darwin:linux": "BUILD_ENGINE_OPTIONS='--no-squash' pnpm setup:env make -C ./build build", ``` Since the squashed image is larger than the original, this has no adverse effects. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
