update dockerignore

This commit is contained in:
Om Lanke
2025-09-25 14:53:21 +05:30
parent 1e2b1bcec6
commit 81ea139691

View File

@@ -1,67 +1,55 @@
# Dependencies # === Dependencies ===
node_modules node_modules/
.pnp
.pnp.js
jspm_packages/
# Package manager files
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*
pnpm-debug.log* pnpm-debug.log*
pnpm-lock.yaml
yarn.lock
package-lock.json
.yarn-integrity
# Production builds # pnpm specific
.pnpm-store/
.pnpm-debug.log*
# === Build outputs ===
.next/ .next/
out/ out/
dist/ dist/
build/ build/
# Environment files # Next.js specific
.next
.swc/
# Nuxt.js
.nuxt
# Storybook
.out
.storybook-out
# === Environment files ===
.env .env
.env.local .env.*
.env.development.local !.env.example
.env.test.local docker.env
.env.production.local
# IDE files # === Cache directories ===
.vscode/ .cache/
.idea/ .parcel-cache/
*.swp .npm/
*.swo
# OS files
.DS_Store
Thumbs.db
# Git
.git
.gitignore
# Docker
Dockerfile*
docker-compose*
.dockerignore
# Logs
logs
*.log
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Coverage directory used by tools like istanbul
coverage/
*.lcov
# nyc test coverage
.nyc_output
# Dependency directories
jspm_packages/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache .eslintcache
.stylelintcache
# TypeScript cache
*.tsbuildinfo
# Microbundle cache # Microbundle cache
.rpt2_cache/ .rpt2_cache/
@@ -69,36 +57,71 @@ jspm_packages/
.rts2_cache_es/ .rts2_cache_es/
.rts2_cache_umd/ .rts2_cache_umd/
# Optional REPL history # === Development tools ===
.turbo/
.vercel/
coverage/
*.lcov
.nyc_output/
# Testing
__tests__/__snapshots__/
# === IDE and editor files ===
.vscode/
.idea/
*.swp
*.swo
*~
# === OS files ===
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# === Version control ===
.git/
.gitignore
.gitattributes
# === Docker files ===
Dockerfile*
docker-compose*
.dockerignore
# === Logs and runtime data ===
logs/
*.log
pids/
*.pid
*.seed
*.pid.lock
.node_repl_history .node_repl_history
# Output of 'npm pack' # === Package outputs ===
*.tgz *.tgz
*.tar.gz
# Yarn Integrity file # === Temporary folders ===
.yarn-integrity
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
# Nuxt.js build / generate output
.nuxt
dist
# Storybook build outputs
.out
.storybook-out
# Temporary folders
tmp/ tmp/
temp/ temp/
# Turbo # === Database ===
.turbo *.db
*.sqlite
*.sqlite3
# Vercel # Drizzle
.vercel drizzle/
# === Uploads and user content ===
shared/uploads/
uploads/
**/uploads/
# === Miscellaneous ===
.cursorignore