| # Git | |
| .git | |
| .gitignore | |
| .gitattributes | |
| # Python cache | |
| __pycache__ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| .Python | |
| # Virtual environments | |
| .venv | |
| venv | |
| env | |
| # Logs | |
| *.log | |
| # OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Documentation (not needed in Docker image) | |
| *.md | |
| README.md | |
| # Test files (optional - remove if you want to include test images) | |
| test_*.png | |
| # IDE | |
| .vscode | |
| .idea | |
| # Misc | |
| *.swp | |
| *.swo | |
| *~ | |