# SAP Datasphere MCP Server - Docker Ignore File

# Git
.git
.gitignore
.gitattributes

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
pip-log.txt
pip-delete-this-directory.txt

# Testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
*.cover
*.log

# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
.claude/

# Documentation (not needed in container)
*.md
!README.md
docs/
examples/

# Environment
.env.example
.env.local
.env.*.local

# Logs
logs/
*.log

# Temporary files
tmp/
temp/
*.tmp

# Test files
tests/
test_*.py
*_test.py

# CI/CD
.github/
.gitlab-ci.yml
.travis.yml
azure-pipelines.yml

# Docker
Dockerfile*
docker-compose*.yml
.dockerignore

# Kubernetes
k8s/
*.yaml
*.yml

# Backup files
*.bak
*.backup
*~

# OS specific
Thumbs.db
.DS_Store
