# OrKa Docker Build Optimization
# Exclude files that shouldn't be in the Docker image

# Version control
.git
.gitignore
.gitattributes

# Documentation
*.md
docs/
*.txt
CHANGELOG*
LICENSE*

# Python cache and compiled files
__pycache__/
*.py[cod]
*.so
*.egg-info/
.pytest_cache/
.coverage
htmlcov/
coverage.xml

# Virtual environments
venv/
env/
.env
.venv

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~

# OS files
.DS_Store
Thumbs.db
desktop.ini

# Test files and directories
test/
tests/
*_test.py
test_*.py

# Build artifacts
build/
dist/
*.egg-info/

# Logs
logs/
*.log

# Temporary files
tmp/
temp/
.tmp/

# Node.js (if any)
node_modules/
npm-debug.log*

# Example configurations
examples/
example*.yml
example*.yaml

# Local development files
docker-compose.override.yml
.env.local
.env.development

# Scripts directory (may contain sensitive info)
scripts/

# Memory traces and outputs
orka_examples_results.json
memory_decay_config.txt 