# ===== Skopix .dockerignore =====
# Keep the Docker build context tiny. Anything not needed at runtime stays out
# of the image.

# Node
node_modules
npm-debug.log
yarn-error.log
.npm
.pnpm-store

# Git
.git
.gitignore
.github

# Editor/IDE
.vscode
.idea
*.swp
*.swo
.DS_Store

# OS
Thumbs.db
ehthumbs.db
Desktop.ini

# Build outputs and cache
dist
build
.cache
.next
coverage
.nyc_output

# Skopix-specific runtime data - these belong in the mounted volume, not the image
skopix-reports
*.suite.yaml
_saved.suite.yaml
.skopix.env
credentials.yaml

# Docker files themselves (we don't need them inside the image)
Dockerfile
.dockerignore
docker-compose*.yml
Caddyfile
.env
.env.example

# Documentation that's nice in the repo but not needed in the image
DOCKER.md
README.md
LICENSE
*.md

# Test artifacts
/tmp
*.test.js.snap

# Misc
.editorconfig
.prettierrc*
.eslintrc*
