From 86c9cb87e4d3408f105143a08723519c47c766c2 Mon Sep 17 00:00:00 2001 From: Julien Cabillot Date: Fri, 29 May 2026 16:33:34 -0400 Subject: [PATCH] fix: set build context to root instead of pkg The build context was set to 'pkg', but the Dockerfile references requirements.txt and src/ which are at the repository root. Changing context to '.' gives Docker access to all necessary files. --- .gitea/workflows/docker-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/docker-build.yaml b/.gitea/workflows/docker-build.yaml index 8613850..21784d4 100644 --- a/.gitea/workflows/docker-build.yaml +++ b/.gitea/workflows/docker-build.yaml @@ -39,7 +39,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v7 with: - context: pkg + context: . file: pkg/Dockerfile push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }}