Skip to content

Commit

Permalink
fix container build
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptaliagy committed Jul 27, 2023
1 parent 2874f8a commit e9fe4d2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pr.yaml → .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,17 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build the container
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm/v7
platforms: linux/amd64,linux/arm64
push: false
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}

0 comments on commit e9fe4d2

Please sign in to comment.