Skip to content

Commit

Permalink
Normalize aarch64 -> arm64 for docker backend (#4451)
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-s authored Nov 25, 2024
1 parent ceee2a0 commit 5d75032
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pipeline/backend/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,8 @@ func normalizeArchType(s string) string {
switch s {
case "x86_64":
return "amd64"
case "aarch64":
return "arm64"
default:
return s
}
Expand Down

0 comments on commit 5d75032

Please sign in to comment.