Files
claude c098933f25
Sync course wiki / sync-wiki (push) Successful in 4s
De-slop: remove every em-dash + banned words across all modules + capstone (#94)
Co-authored-by: claude <claude@jpaul.io>
Co-committed-by: claude <claude@jpaul.io>
2026-06-22 23:21:22 -04:00

23 lines
618 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