Add the ability to build multi architecture docker images with qemu. See: https://www.docker.com/blog/multi-platform-docker-builds/
Comment From: scottfrederick
The Spring Boot build plugins integrate with a Cloud Native Buildpacks builder to generate Docker images. The builder uses buildpacks to generate the image contents, based on a run image for the base OS layers. Spring Boot uses the Paketo builders by default, but you can choose to use any other CNB-compliant builder.
Supporting multi-arch images would be the responsibility of the CNB builder, not something that is under Spring Boot's control. I haven't seen this topic discussed in the CNB community, but you could start the discussion with the Buildpacks.io or Paketo teams.
Comment From: MarcelCoding
@scottfrederick Thanks for your fast reply.