From ef8506e5ecb7a29fe78d51b9a5851da9539b9735 Mon Sep 17 00:00:00 2001 From: Devlin Cashman <55607117+devlincashman@users.noreply.github.com> Date: Sun, 18 Dec 2022 13:16:56 -0500 Subject: [PATCH] use path context so dockerignore is respected --- .github/workflows/docker.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index fc6b16d9..f5b38c7a 100755 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -57,6 +57,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v3 with: + context: . platforms: linux/amd64,linux/arm64,linux/arm/v7 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} @@ -106,6 +107,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v3 with: + context: . platforms: linux/amd64,linux/arm64,linux/arm/v7 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }}