From f240925266a96a9b2e48f6d9dc02c4db03f89ca6 Mon Sep 17 00:00:00 2001 From: tsubramanian Date: Sat, 9 Nov 2024 23:08:54 -0500 Subject: [PATCH] Update docker-publish.yaml --- .github/workflows/docker-publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-publish.yaml b/.github/workflows/docker-publish.yaml index 245dd0c..dce1dc9 100644 --- a/.github/workflows/docker-publish.yaml +++ b/.github/workflows/docker-publish.yaml @@ -85,7 +85,7 @@ jobs: # Build images - name: Build Codex run: | - docker buildx build \ + DOCKER_BUILDKIT=1 docker buildx build \ -t wildme/scoutbot:${{ env.IMAGE_TAG }} \ --platform linux/amd64 \ --push \ @@ -95,7 +95,7 @@ jobs: - name: Build Codex if: ${{ github.event_name == 'push'}} run: | - docker buildx build \ + DOCKER_BUILDKIT=1 docker buildx build \ -t wildme/scoutbot:latest \ --platform linux/amd64 \ --push \