Add native support for Apple M1 in Docker Images
Describe the feature request It would be very helpful if Mockserver could push Docker images that support the arm64 architecture.
What you are trying to do I am not familiar with the release process. I have not found any automatism for it in the project. Otherwise I would have already provided a pull request. But please see the next section, there is the solution described.
The solution you'd like It would be nice if the current docker build command could swap with the following one:
docker buildx build --platform=linux/arm64,linux/amd64 --no-cache --tag mockserver/mockserver:mockserver-5.13.2 --push ./docker && docker buildx build --platform=linux/arm64,linux/amd64 --no-cache --tag mockserver/mockserver:5.13.2 --push ./docker
I have already executed and tested this on several projects. Some references: https://hub.docker.com/u/ezienecker
Describe alternatives you've considered There is no alternative.