We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4fa33e commit ed0670eCopy full SHA for ed0670e
CONTRIBUTING.md
@@ -22,3 +22,13 @@ Build with Docker buildkit:
22
$ cd universal/ubi9
23
$ DOCKER_BUILDKIT=1 docker image build --progress=plain -t quay.io/devfile/universal-developer-image:ubi9-latest .
24
```
25
+
26
+To build for a specific architecture:
27
28
+```bash
29
+# amd64
30
+$ DOCKER_BUILDKIT=1 docker image build --platform linux/amd64 --progress=plain -t quay.io/devfile/universal-developer-image:ubi9-latest .
31
32
+# arm64
33
+$ DOCKER_BUILDKIT=1 docker image build --platform linux/arm64 --progress=plain -t quay.io/devfile/universal-developer-image:ubi9-latest .
34
+```
0 commit comments