Running arm64 docker container on x86
Make sure to install the packages mentioned in , which then will allows docker to leverage qemu, which then emulates the target cpu architecture. binfmt Use the image to install QEMU and register the executable types on the host with a single command: $ docker run --privileged --rm tonistiigi/binfmt --install all This installs the QEMU binaries and registers them with , enabling QEMU to execute non-native file formats for emulation. Once QEMU is installed and the executable types are registered on the host OS, they work transparently inside containers. You can…