# SSH Tunnel Docker Build - Ignore Patterns

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

# Git files
.git/
.gitignore
.gitattributes

# Development and test files
*.test
*.tmp
*.temp
*.log
*.bak
*.swp
*.swo
*~

# IDE files
.vscode/
.idea/
*.sublime-*

# SSH files that should NOT be in the image
# (only roa_oracle_server should be copied)
secrets/*_test*
secrets/*.pub
secrets/*.pem
secrets/*.key
secrets/known_hosts
secrets/config

# Backup files
*.backup
*.orig
*.old

# OS files
.DS_Store
Thumbs.db
._*

# Python cache (if any scripts generate them)
__pycache__/
*.pyc
*.pyo
*.pyd
.Python

# Temporary files
temp/
tmp/
*.pid

# Build artifacts
*.tar
*.tar.gz
*.zip

# Keep only what's needed for the build:
# - Dockerfile (implicit)
# - ssh_tunnel_docker.sh
# - secrets/roa_oracle_server
