Files
rendercv/.github/workflows
Quentin Mazars-Simon 7d426c7ba5 Setup multi-platform docker build (#697)
See: https://docs.docker.com/build/ci/github-actions/multi-platform/

Avoids getting this warning when running on an ARM mac, or having to pass `--arch amd64` when using Apple's [`container`](https://github.com/apple/container)

> WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested

Tested locally by running

```sh
docker build --platform linux/arm64,linux/amd64  -t render:qms -f Dockerfile .
```

And then verifying that I'm not getting the warning when

```sh
docker run -v "$PWD":/work -w /work render:qms render cvyaml
```

It might need some tweaks when running in Github Actions, we'll have to test.
2026-03-21 00:45:13 +03:00
..
2026-03-20 21:14:04 +03:00