You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the 2.x branch and respective releases the functionality to create multi arch images is broken due to jq overwriting the first manifest while creating the index manifest.
Here the jq command should merge the existing manifest with the newly added one from the image. But instead it overrides the existing one. JQ has an explicit append to array operator += which is better suited in this context.
The text was updated successfully, but these errors were encountered:
In the 2.x branch and respective releases the functionality to create multi arch images is broken due to jq overwriting the first manifest while creating the index manifest.
rules_oci/oci/private/image_index.sh.tpl
Line 27 in 0d90696
Here the jq command should merge the existing manifest with the newly added one from the image. But instead it overrides the existing one. JQ has an explicit append to array operator += which is better suited in this context.
The text was updated successfully, but these errors were encountered: