# Docker ignore file for PalletDataGenerator
# Excludes files and directories from Docker build context

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
venv/
env/
ENV/
env.bak/
venv.bak/

# IDEs and editors
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# Git
.git/
.gitignore

# Documentation builds
docs/_build/
docs/build/
site/

# Testing
.tox/
.coverage
.pytest_cache/
.coverage.*
coverage.xml
*.cover
.hypothesis/
htmlcov/

# Jupyter
.ipynb_checkpoints

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# Local development
.env
.env.local
.env.*.local

# Logs
*.log
logs/

# Temporary files
tmp/
temp/
.tmp/

# OS generated
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/

# Project specific
scenes/
output/
datasets/
*.blend
*.blend1
*.blend2

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

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

# Package managers
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Large files
*.zip
*.tar.gz
*.tgz
*.tar.bz2
