62 lines
829 B
Plaintext
62 lines
829 B
Plaintext
# =============================================================================
|
|
# Docker Build Ignore
|
|
# =============================================================================
|
|
# Files/directories to exclude from the Docker build context.
|
|
# This speeds up builds and keeps sensitive files out of the image.
|
|
# =============================================================================
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Build artifacts
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.docker/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temp files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Simulation outputs
|
|
recordings/
|
|
*.webp
|
|
*.mp4
|
|
*.avi
|
|
|
|
# Documentation (optional - include if needed)
|
|
# docs/
|