I am building an image on my local macos and my Dockerfile
is pulling base image without any platform specification i.e. FROM python:3.11-slim
I have following questions:
- Is the architecture of resulting image
arm64
. Seems obvious, given macos is arm64 based (m1 chip) but just wanted to confirm? - If above is true, how can I build images for different platform (
amd64
). Do I have build separate images for each platform?