Skopeo multi-arch issue#873
Open
shivakunv wants to merge 2 commits into
Open
Conversation
shivakunv
force-pushed
the
skopeo-multiarch-issue
branch
from
July 20, 2026 09:21
3f52a33 to
038fdbf
Compare
…stead of oci-archive Signed-off-by: Shiva Kumar (SW-CLOUD) <shivaku@nvidia.com>
shivakunv
force-pushed
the
skopeo-multiarch-issue
branch
2 times, most recently
from
July 21, 2026 06:12
bd39db6 to
ffc8d93
Compare
…stead of oci-archive Signed-off-by: Shiva Kumar (SW-CLOUD) <shivaku@nvidia.com> Fix[precompiled-arm]: Use oci: directory transport with --all flag instead of oci-archive Signed-off-by: Shiva Kumar (SW-CLOUD) <shivaku@nvidia.com>
shivakunv
force-pushed
the
skopeo-multiarch-issue
branch
from
July 21, 2026 06:14
ffc8d93 to
dc84491
Compare
shivakunv
marked this pull request as ready for review
July 21, 2026 06:15
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.
issue: oci-archive: silently drops
arm64manifests , whileoci: (directory)with--allpreserves the fullamd64+arm64OCI index.podman-container-tools/skopeo#2463
The oci-archive:/oci: transports only support some shapes of indices / manifests — as a guess, a multi-platform image directly stored in the OCI format as a top-level index is not supported; it needs to be an index which contains a nested multi-platform image index.
Solution :
Replace
skopeo copy oci-archive:file.tarwithtar -xf + skopeo copy --all oci:dirto correctly publishmulti-archimages.https://github.com/containers/skopeo/blob/main/docs/skopeo-copy.1.md
--all: If source-image refers to a list of images, instead of copying just the image which matches the current OS and architecture (subject to the use of the global --override-os, --override-arch and --override-variant options), attempt to copy all of the images in the list, and the list itself.