# Docker ignore file to reduce build context size

# Git
.git
.gitignore
.gitattributes

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

# Documentation
*.md
docs/
README*
LICENSE*

# IDE
.vscode
.idea
*.swp
*.swo
*~

# Build artifacts
target/
dist/
build/
node_modules/
coverage/

# Test files
tests/
benches/
*.test.ts
*.test.js
*.spec.ts
*.spec.js

# Environment files
.env
.env.*
!.env.example

# OS files
.DS_Store
Thumbs.db

# Logs
*.log
logs/

# Temporary files
tmp/
temp/
*.tmp
