.dockerignore 843 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Docker ignore file for simplified Playwright setup
  2. # Only include essential files for Docker build context
  3. # Node modules (Docker will install minimal deps)
  4. node_modules/
  5. */node_modules/
  6. **/node_modules/
  7. # Test results and reports (will be generated in Docker)
  8. test-results/
  9. playwright-report/
  10. coverage/
  11. .nyc_output/
  12. # Cache directories
  13. .turbo/
  14. .cache/
  15. .vite/
  16. .next/
  17. .nuxt/
  18. # IDE and editor files
  19. .vscode/
  20. .vscode-test/
  21. .idea/
  22. *.swp
  23. *.swo
  24. *~
  25. # OS generated files
  26. .DS_Store
  27. .DS_Store?
  28. ._*
  29. .Spotlight-V100
  30. .Trashes
  31. ehthumbs.db
  32. Thumbs.db
  33. # Logs
  34. *.log
  35. logs/
  36. npm-debug.log*
  37. pnpm-debug.log*
  38. # Runtime data
  39. pids/
  40. *.pid
  41. *.seed
  42. *.pid.lock
  43. # Temporary files
  44. tmp/
  45. temp/
  46. .tmp/
  47. # Git
  48. .git/
  49. .gitignore
  50. # Environment files (except sample)
  51. .env.local
  52. .env.*.local
  53. # Package manager lock files (Docker uses npm for minimal deps)
  54. package-lock.json