fix: set build context to root instead of pkg
Docker Build and Push / build (pull_request) Successful in 46s

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.
This commit is contained in:
Julien Cabillot
2026-05-29 16:33:34 -04:00
parent 5bfa99ec55
commit 86c9cb87e4
+1 -1
View File
@@ -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 }}