Normalize aarch64 -> arm64 for docker backend (#4451)

This commit is contained in:
Patrick Schratz 2024-11-25 16:17:57 +01:00 committed by GitHub
parent ceee2a07ab
commit 5d750322bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -358,6 +358,8 @@ func normalizeArchType(s string) string {
switch s {
case "x86_64":
return "amd64"
case "aarch64":
return "arm64"
default:
return s
}