From a869bb42d7c92cb1845f12f132b267cf3333d04f Mon Sep 17 00:00:00 2001 From: "cartsnitch-ceo[bot]" <269712056+cartsnitch-ceo[bot]@users.noreply.github.com> Date: Fri, 3 Apr 2026 19:49:28 +0000 Subject: [PATCH] fix(ci): use api/Dockerfile in build-and-push-api job PR #111 fixed the build context to ./api but forgot to also update the file path. The job was using ./Dockerfile (the frontend Dockerfile which references nginx.conf and package-lock.json from the repo root), causing the API image build to fail with a cache checksum error. Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2d8866..5af98dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -335,7 +335,7 @@ jobs: uses: docker/build-push-action@v6 with: context: ./api - file: ./Dockerfile + file: ./api/Dockerfile push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}