6 Commits

Author SHA1 Message Date
Sagent b9a30bc02b chore: remove empty renovate.json, covered by global config
Docker Build and Push / build (pull_request) Successful in 58s
2026-06-09 13:55:39 +00:00
Sagent 7508880485 chore: remove redundant configs now handled globally
Docker Build and Push / build (pull_request) Successful in 1m5s
2026-06-09 13:42:37 +00:00
Sagent 1bad6949f0 chore: improve renovate dependency detection
Docker Build and Push / build (pull_request) Failing after 13m31s
2026-06-09 12:45:48 +00:00
jcabillot f332c9c32a Merge pull request 'fix: set build context to root instead of pkg' (#4) from fix/build-context into main
Docker Build and Push / build (push) Successful in 1m9s
Reviewed-on: #4
2026-05-29 16:35:40 -04:00
Julien Cabillot 86c9cb87e4 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.
2026-05-29 16:33:34 -04:00
jcabillot 5bfa99ec55 feat: add Gitea Actions workflow
Docker Build and Push / build (push) Failing after 21s
feat: add Gitea Actions workflow
2026-05-29 16:22:57 -04:00
+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 }}