Quick fix for Apple Silicon M1 support in `run` (#1704)
* Quick fix for Apple Silicon M1 support in `run`
This commit fixes the `run` command for Apple Silicon M1 support. The `run` command now uses the `docker run` command with the `--platform` flag set to `linux/amd64` to ensure that the container runs on the correct architecture.
This behavior matches the `build` command, which also uses the `--platform` flag to ensure that the image is built for the correct architecture.
* Missed incorrect import