58 lines
584 B
Plaintext
58 lines
584 B
Plaintext
# .dockerignore - Exclude unnecessary files from Docker build context
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.github
|
|
|
|
# Dependencies
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Next.js
|
|
/.next/
|
|
/out/
|
|
.next
|
|
out
|
|
|
|
# Production
|
|
/build
|
|
|
|
# Environment files
|
|
.env*
|
|
!.env.example
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# Typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Documentation
|
|
README.md
|
|
DEPLOYMENT.md
|
|
*.md
|
|
|
|
# Docker files (not needed in container)
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Cloudflare
|
|
cloudflared-config.yml
|