Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 75 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# Version control
.git/
.gitignore

# Python cache & build artifacts
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
dist/
*.egg-info/
*.egg
MANIFEST
wheels/
share/python-wheels/

# Virtual environments
.venv/
venv/
env/
ENV/

# Test & coverage
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Type checkers
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/

# IDE & editor
.idea/
.vscode/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Environment & secrets
.env
.env.*
!.env.example

# Project cache
.cache/

# CI/CD & GitHub Actions
.github/

# Assets (not needed at runtime)
assets/

# Homebrew formula
Formula/

# Docs & misc
*.md
!README.md
LICENSE
Makefile
Loading