We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a924c4b commit 0516611Copy full SHA for 0516611
1 file changed
compare.go
@@ -124,10 +124,11 @@ func platformVector(platform specs.Platform) []specs.Platform {
124
}
125
126
127
+ // All arm64/v8.x and arm64/v9.x are compatible with arm/v8 (32-bits) and below.
128
+ // There's no arm64 v9 variant, so it's normalized to v8.
129
if strings.HasPrefix(variant, "v8.") || strings.HasPrefix(variant, "v9.") {
130
variant = "v8"
131
-
132
vector = append(vector, platformVector(specs.Platform{
133
Architecture: "arm",
134
OS: platform.OS,
0 commit comments