From 4a6abf8970379ad9eb0f9ffe91bc4481c66a9343 Mon Sep 17 00:00:00 2001 From: giovano <135080375+giovanoh@users.noreply.github.com> Date: Sun, 18 May 2025 23:33:49 -0300 Subject: [PATCH] fix(ci): update Docker build context and Dockerfile path in CD workflow Ensure the Docker build uses the project root as context and specifies the correct Dockerfile path --- .github/workflows/cd.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index fbeca82..474b546 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -47,7 +47,8 @@ jobs: - name: Build and push Docker image uses: docker/build-push-action@v5 with: - context: src/Library.API + context: . + file: src/Library.API/Dockerfile push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}