Fix: use buildx imagetools for multi-arch manifest creation#387
Merged
fuziontech merged 1 commit intomainfrom Apr 2, 2026
Merged
Fix: use buildx imagetools for multi-arch manifest creation#387fuziontech merged 1 commit intomainfrom
fuziontech merged 1 commit intomainfrom
Conversation
docker/build-push-action pushes single-platform manifest lists, not
plain images. `docker manifest create` cannot compose manifest lists
from other manifest lists ("is a manifest list" error). Switch to
`docker buildx imagetools create` which handles this correctly.
Also captures the manifest digest via `imagetools inspect` for the
deployment payload.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes the manifest job failure from #386:
docker manifest createfails with "is a manifest list" becausedocker/build-push-actionpushes single-platform manifest lists, not plain images.docker manifest createcannot nest manifest lists.Switches to
docker buildx imagetools createwhich correctly unwraps the per-arch manifest lists and composes a proper multi-arch manifest. Also addssetup-buildx-actionto the manifest job and captures the digest viaimagetools inspect.Failed run: https://github.com/PostHog/duckgres/actions/runs/23882512533/job/69638953796
Test plan
🤖 Generated with Claude Code