.dockerignore 343 B

12345678910111213141516171819202122232425
  1. # 依赖库:不要打包本地的 node_modules,由 Docker 重新安装
  2. node_modules
  3. npm-debug.log*
  4. yarn-debug.log*
  5. yarn-error.log*
  6. # WebStorm / JetBrains IDE 相关文件
  7. .idea/
  8. *.iws
  9. *.iml
  10. # Git 相关
  11. .git
  12. .gitignore
  13. # 环境变量与配置
  14. .env.local
  15. .env.*.local
  16. .DS_Store
  17. # 文档与杂项
  18. README.md
  19. LICENSE
  20. .editorconfig
  21. .vscode/