Patrick Braune
Patrick Braune
I had the same issue with `node:20.14.0-alpine` for `arm/v7` (cannot say anything about `arm/v6`). Adding `--platform=$BUILDPLATFORM` to `FROM` solved it for me. Read about it in [the docs](https://docs.docker.com/build/building/multi-platform/#cross-compilation). This is...
@LaurentGoderre @pheiduck I use [this Dockerfile](https://github.com/pabra/inwx-apply/blob/master/Dockerfile) with this [github action](https://github.com/pabra/inwx-apply/blob/master/.github/workflows/publish.yml). And it now builds images for `platforms: linux/amd64,linux/arm64,linux/arm/v7`. Without `--platform=$BUILDPLATFORM` in the Dockerfile, it hang for arm v7. Not sure...