Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,12 @@ public void execute() {

if (parameters.getPush().getOrElse(false)) {
spec.args("--push");
} else if (!isCrossPlatform) {
// For single-platform builds, add --load to ensure the image is loaded into
// the local Docker daemon as a regular image, not a manifest list.
// This prevents issues with newer Docker versions (23.0+) that may create
// manifest lists even for single-platform builds when BuildKit is enabled.
spec.args("--load");
}
});

Expand Down