podman-build/vendor/github.com/containers/common/libimage/manifests/copy.go
2025-10-11 12:30:35 +09:00

14 lines
341 B
Go

package manifests
import (
"github.com/containers/image/v5/signature"
)
// storageAllowedPolicyScopes overrides the policy for local storage
// to ensure that we can read images from it.
var storageAllowedPolicyScopes = signature.PolicyTransportScopes{
"": []signature.PolicyRequirement{
signature.NewPRInsecureAcceptAnything(),
},
}