# ============================================
# Docker build context exclusions
# ============================================

# Dependencies & build cache
node_modules
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# Previous builds
dist

# Git & editor
.git
.gitignore
.vscode
.idea
*.swp
*.swo
.DS_Store

# Docker (nested builds not needed)
docker-compose*.yml
Dockerfile*
.dockerignore

# Docs / misc
README.md
LICENSE
CHANGELOG.md
*.md

# Tests & CI
.github
.gitlab-ci.yml
tests
coverage
.nyc_output
cypress
playwright

# Local env
.env
.env.*
!.env.example
