Error is: ``` qemu-x86_64: Could not open '/lib64/ld-linux-x86-64.so.2': No such file or directory ``` It can be fixed by changing: ``` FROM debian:stable-slim ``` to ``` FROM --platform=linux/amd64 debian:stable-slim ``` Although I don't know enough about the build process to know if it's a good idea to add that for everyone.