Raspberry Pi 4 (64-Bit) with balena base images Exitcode 159

Hi @Desty,

Something that jumps out at me is the architecture that your Docker version is reporting. I’m assuming you’re trying to build this on the Pi4 from the screenshot? Because you’re trying to use 64bit base images, you’ll need to use an aarch64 version of Docker to do so else of course you will only be able to use 32bit Arm base images.

Looking at the screenshot you’ve provided, it appears the Docker architecture version is linux/arm and not linux/arm64 (from the docker version output).

This suggests to me you’re Raspbian, which I believe is still only 32 bit (though I think there are 64bit kernel releases for it now). It might be worth investigating switching to the 64bit kernel, or possibly building on a VM with 64bit support (I think there are some RPi4 64bit builders in Qemu images, too).

Best regards,

Heds