# Container Build Exclusions # Exclude files not needed in production container image # Git .git .gitignore .gitattributes # Python __pycache__ *.pyc *.pyo *.pyd .Python *.so *.egg *.egg-info dist build .pytest_cache .coverage htmlcov .tox .hypothesis # Virtual environments venv env .venv .env.local # Development data data container-data *.db *.db-journal # IDE .vscode .idea *.swp *.swo *~ .DS_Store # Documentation (optional - include if needed for offline docs) docs *.md !README.md # Tests (not needed in production) tests .pytest_cache # Development scripts dev_auth.py test_*.py # Container files Containerfile compose.yaml .containerignore docker-compose.yml Dockerfile # CI/CD .github .gitlab-ci.yml .travis.yml # Logs *.log logs # Temporary files tmp temp *.tmp