.dockerignore 551 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # =========================================================================
  2. # Docker 构建忽略文件 — 排除不必要的文件加速构建
  3. # =========================================================================
  4. # Python
  5. __pycache__/
  6. *.py[cod]
  7. *.egg-info/
  8. .venv/
  9. venv/
  10. # Node.js
  11. node_modules/
  12. frontend/node_modules/
  13. frontend/dist/
  14. # Git
  15. .git/
  16. .gitignore
  17. # IDE
  18. .vscode/
  19. .idea/
  20. *.swp
  21. *.swo
  22. # 文档和日志
  23. docs/
  24. *.md
  25. README.md
  26. *.log
  27. # 环境变量(在构建时单独COPY)
  28. # .env 需要被COPY,不忽略
  29. # 临时文件
  30. tmp/
  31. temp/