.dockerignore 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # Logs
  2. logs
  3. *.log
  4. npm-debug.log*
  5. yarn-debug.log*
  6. yarn-error.log*
  7. # Runtime data
  8. pids
  9. *.pid
  10. *.seed
  11. *.pid.lock
  12. # Directory for instrumented libs generated by jscoverage/JSCover
  13. lib-cov
  14. # Coverage directory used by tools like istanbul
  15. coverage
  16. *.lcov
  17. # nyc test coverage
  18. .nyc_output
  19. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  20. .grunt
  21. # Node.js dependencies
  22. /node_modules
  23. /jspm_packages
  24. # TypeScript v1 declaration files
  25. typings
  26. # Optional npm cache directory
  27. .npm
  28. # Optional eslint cache
  29. .eslintcache
  30. # Optional REPL history
  31. .node_repl_history
  32. # Output of 'npm pack'
  33. *.tgz
  34. # Yarn Integrity file
  35. .yarn-integrity
  36. # dotenv environment variable files
  37. .env
  38. .env.test
  39. # local env files
  40. .env*.local
  41. # Next.js build output
  42. .next
  43. out
  44. # Nuxt.js build output
  45. .nuxt
  46. dist
  47. # Gatsby files
  48. .cache/
  49. # Vuepress build output
  50. .vuepress/dist
  51. # Serverless directories
  52. .serverless/
  53. # FuseBox cache
  54. .fusebox/
  55. # DynamoDB Local files
  56. .dynamodb/
  57. # Temporary folders
  58. tmp
  59. temp
  60. # IDE and editor directories
  61. .idea
  62. .vscode
  63. *.swp
  64. *.swo
  65. *~
  66. # OS generated files
  67. .DS_Store
  68. Thumbs.db
  69. # secret key
  70. *.key
  71. *.key.pub