2684095e2f
Co-authored-by: claude <claude@jpaul.io> Co-committed-by: claude <claude@jpaul.io>
23 lines
630 B
Plaintext
23 lines
630 B
Plaintext
# Copy this to a file named exactly ".dockerignore" in your project root.
|
|
#
|
|
# It does for the image what .gitignore (Module 2) does for the repo: what isn't copied can't
|
|
# bloat the image, slow the build, or leak into it. A lean, predictable build context is part of
|
|
# what makes the image reproducible.
|
|
|
|
# Python caches — regenerated, never shipped
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Runtime state — never bake one machine's data into a shared image
|
|
tasks.json
|
|
|
|
# Version control and project meta — not needed to run the app
|
|
.git/
|
|
.gitignore
|
|
.dockerignore
|
|
|
|
# Local environments and docs — keep them out of the image
|
|
.venv/
|
|
venv/
|
|
*.md
|