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 6334ca1 commit 5f44edbCopy full SHA for 5f44edb
.github/workflows/testing-docker-multiplatform-builds.yml
@@ -40,7 +40,8 @@ jobs:
40
### --attest type=provenance,mode=max \
41
run: |
42
docker buildx build \
43
- --provenance false \
+ --attest type=provenance,mode=max \
44
+ --sbom=true \
45
--push --platform linux/${{ matrix.arch }} \
46
--progress plain \
47
-t ${{ env.DOCKER_URL }}-${{ matrix.docker-tag }} -f Dockerfile-mp .
@@ -63,8 +64,7 @@ jobs:
63
64
65
- name: Build multiplatform image
66
- docker manifest create \
67
- ${{ env.DOCKER_URL }} \
68
- --amend ${{ env.DOCKER_URL }}-amd64-v2 \
69
- --amend ${{ env.DOCKER_URL }}-arm64
70
- docker manifest push ${{ env.DOCKER_URL }}
+ docker buildx imagetools create \
+ -t ${{ env.DOCKER_URL }} \
+ ${{ env.DOCKER_URL }}-amd64-v2 \
+ ${{ env.DOCKER_URL }}-arm64
0 commit comments