quartz/content/Building docker images on Mac M1 - M2 - Silicon.md
2024-04-01 08:30:01 +02:00

17 lines
290 B
Markdown

Must include `
```bash
docker build --platform amd64 .
```
or add this in dockerfile
```yaml
FROM --platform=amd64 debian
...
```
## Links:
[creating amd64 docker image on m1 - Stack Overflow](https://stackoverflow.com/questions/68881910/creating-amd64-docker-image-on-m1)
202403311844