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 oci_image rule, the image built directly inherits the data field from the config in the base image, despite having a different config. This causes the data field to no longer match the digest for the config, causing verification errors. This can break many libraries and tools (such as https://github.com/google/go-containerregistry) because they will try and verify the manifest and fail to do so.
The text was updated successfully, but these errors were encountered:
#757 fixes pushing images with recent versions of debian containers to Amazon ECR
Error: PUT https://...dkr.ecr.us-east-1.amazonaws.com...:
UNSUPPORTED: Invalid parameter at 'ImageManifest' failed to satisfy constraint: 'Invalid JSON syntax'
The latest debian image now adds the
data
field underconfig
in the image manifest:In the
oci_image
rule, the image built directly inherits thedata
field from theconfig
in the base image, despite having a different config. This causes the data field to no longer match thedigest
for the config, causing verification errors. This can break many libraries and tools (such as https://github.com/google/go-containerregistry) because they will try and verify the manifest and fail to do so.The text was updated successfully, but these errors were encountered: