Docker-based distributed Blender render farm.
For the most part, all you need to test blackstrap is Docker. If you want to try building for ARM, though, you need to install the proper architecture emulator:
$ docker run --privileged --rm tonistiigi/binfmt --install arm64Then, you can build the for the ARM platform by adding linux/arm64 to the --platform list supplied to Buildx. Because Docker must emulate a different CPU architecture, there is a very large performance hit. Building for ARM on x86-64 takes a lot longer.
$ docker buildx build --platform linux/amd64,linux/arm64 .