GeoIntel release gates / Compile, test, contracts and builds (push) Successful in 1m49s
GeoIntel release gates / Python and npm vulnerability policy (push) Successful in 21s
GeoIntel release gates / Production AI image, SBOM and container scan (push) Successful in 5m39s
GeoIntel release gates / Deploy exact gated revision to Unraid (push) Failing after 58m43s
58 lines
1.0 KiB
Plaintext
58 lines
1.0 KiB
Plaintext
# Build context exclusions for deploy/unraid/Dockerfile.all-in-one.
|
|
# Everything listed here is NOT sent to the Docker daemon.
|
|
# Keep this aggressive: the all-in-one image only needs
|
|
# backend/, frontend/, fixtures/, scripts/, deploy/ and VERSION.
|
|
|
|
.git
|
|
.gitea
|
|
.github
|
|
.venv
|
|
venv
|
|
__pycache__
|
|
*.pyc
|
|
.pytest_cache
|
|
.mypy_cache
|
|
.ruff_cache
|
|
|
|
# Node dependencies at every level (root test harness + frontend).
|
|
node_modules
|
|
**/node_modules
|
|
frontend/node_modules
|
|
frontend/dist
|
|
frontend/*.tsbuildinfo
|
|
**/*.tsbuildinfo
|
|
frontend-src.tar.gz
|
|
|
|
backend/.pytest_cache
|
|
backend/**/*.pyc
|
|
backend/**/__pycache__
|
|
|
|
# Accidental self-copy of the repository into itself.
|
|
# Without this the build context is duplicated and the build stalls.
|
|
/geointel
|
|
|
|
# Local work products, never needed inside the image.
|
|
.codex-input
|
|
test-results
|
|
playwright-report
|
|
artifacts
|
|
RELEASE_NOTES
|
|
adr
|
|
docs
|
|
checklists
|
|
*.log
|
|
|
|
# Runtime data and secrets: mounted at runtime, never baked in.
|
|
storage
|
|
postgres-data
|
|
backups
|
|
datasets/raw
|
|
datasets/processed
|
|
datasets/cache
|
|
exports
|
|
models
|
|
|
|
.env
|
|
.env.*
|
|
!.env.example
|