Files
photoanalyzer/.dockerignore
domverse e508f9fd64
Some checks failed
Test / suites (push) Failing after 2m59s
Test / container (push) Failing after 3m56s
US09-01: Serve the Documentation Inside the Application (#107)
2026-08-23 21:09:43 +02:00

24 lines
476 B
Plaintext

# Deny-by-default build context (US08-02): the image must contain no secrets, no
# photos, no database, no logs, and no .git. An allow list is the only version of this
# rule that stays true when a new file appears in the working copy.
*
!pyproject.toml
!alembic.ini
!README.md
!photo_pipeline
!migrations
!frontend
!docs
!docker
# Nothing generated, even under an allowed directory.
**/__pycache__
**/*.py[cod]
**/.DS_Store
**/*.env
**/*.log
**/*.db
**/*.db-*
**/*.sqlite*