We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 647cf66 commit 5314556Copy full SHA for 5314556
core/services/kraken/manifest/models.py
@@ -33,6 +33,9 @@ def from_machine() -> Optional["DockerPlatforms"]:
33
case "x86_64" | "amd64":
34
return DockerPlatforms.AMD64
35
case "aarch64" | "arm64":
36
+ # catch the case of 64 bit kernel with 32bit userland on Pi 5
37
+ if platform.architecture()[0] == "32bit":
38
+ return DockerPlatforms.ARM_V7
39
return DockerPlatforms.ARM64
40
case _:
41
return None
0 commit comments