diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 629e717..e8a59d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,4 +19,4 @@ jobs: - name: Build the Docker image run: | docker run --rm --privileged multiarch/qemu-user-static:register --reset - docker build -t "${DOCKER_CONTAINER}:${{ github.sha }}" --platform ${DOCKER_ARCH} --pull . + docker build -t "${DOCKER_CONTAINER}:${{ github.sha }}" --platform ${DOCKER_ARCH} --pull -f Dockerfile.multiarch-aarch64 . diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8549ede..441e6a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: - name: Build the Docker image run: | docker run --rm --privileged multiarch/qemu-user-static:register --reset - docker build -t "${DOCKER_CONTAINER}:${{ steps.get_version.outputs.VERSION }}" --platform ${DOCKER_ARCH} --pull . + docker build -t "${DOCKER_CONTAINER}:${{ steps.get_version.outputs.VERSION }}" --platform ${DOCKER_ARCH} --pull -f Dockerfile.multiarch-aarch64 . - name: Push To Quay id: push-to-quay