19 lines
375 B
Plaintext
19 lines
375 B
Plaintext
# Docker only reads the .dockerignore INSIDE the build context (this folder) — the one at
|
|
# the app root does not apply to `build: ./backend`. Without this file the image would
|
|
# bake in backend/data: the live SQLite database and uploaded financial files.
|
|
data
|
|
.pytest_cache
|
|
__pycache__
|
|
**/__pycache__
|
|
*.pyc
|
|
.venv
|
|
venv
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.xlsx
|
|
*.xls
|
|
*.csv
|
|
.env
|
|
.env.*
|