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 ab53407 commit c527114Copy full SHA for c527114
.github/workflows/dockerhub-build-push-on-push.yml
@@ -22,12 +22,16 @@ jobs:
22
username: ${{ secrets.DOCKERHUB_USERNAME }}
23
password: ${{ secrets.DOCKERHUB_PA_TOKEN }}
24
25
+ - name: Install QEMU
26
+ run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
27
+
28
- name: Set up Docker Buildx
29
uses: docker/setup-buildx-action@v3
30
31
- name: Build and push Docker image
32
uses: docker/build-push-action@v6
33
with:
34
+ provenance: false # Disable provenance metadata to fix BuildKit issues
35
context: .
36
file: ./Dockerfile
37
push: true
0 commit comments