mirror of
https://github.com/rendercv/rendercv.git
synced 2026-04-17 13:33:53 -04:00
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.