diff --git a/.github/workflows/docker-hub.yml b/.github/workflows/docker-hub.yml index 1ccc38a..d32c064 100644 --- a/.github/workflows/docker-hub.yml +++ b/.github/workflows/docker-hub.yml @@ -34,6 +34,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Docker meta id: meta @@ -54,6 +60,7 @@ jobs: context: . file: ./app/Dockerfile target: production + platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}