[MFE k8s pod]standard_init_linux.go:228: exec user process caused: exec format error

I build the MFE image by following command and deploy it to digitalocean k8s. but MFE pod couldn’t startup, the CrashLoopBackOff error still happened.
It looks like start command in pod was failed, but I don’t know how to fix this.
docker image which I used is here: docker pull aaronzhangl/openedx-mfe:14.0.1

$ tutor --version
tutor, version 14.1.1

$ tutor config save --set MFE_DOCKER_IMAGE=docker.io/aaronzhangl/openedx-mfe:14.0.1
$ tutor images build mfe
$ tutor images push mfe
....
$ kubectl get pod | grep mfe
mfe-794fc87547-9pbwx                 0/1     CrashLoopBackOff   1 (2s ago)   8s
$ kubectl logs mfe-794fc87547-9pbwx
standard_init_linux.go:228: exec user process caused: exec format error

I fixed this by following command since I worked in MacOS M1.

tutor images build mfe --docker-arg '--platform=linux/amd64'