When running on Arm64 machines, this error was found. It exists not only in distroless/base 'debug' images, but also in distroless/cc 'debug' images. All exhibit the same error prints:
$ sudo docker run gcr.io/distroless/base:debug -c "echo hello"
standard_init_linux.go:211: exec user process caused "exec format error"
The same command, because it's multi-arch, when running on amd64 machines, can succeed. Expected behavior: (as on amd64)
$ sudo docker run gcr.io/distroless/base:debug -c "echo hello"
hello