Files
SaaS2/.dockerignore
RUI 218812b768
Some checks failed
Next.js CI/CD 流水线 / deploy (push) Failing after 12s
0606.5
2025-06-06 01:46:34 +08:00

70 lines
920 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 🚀 超优化版 .dockerignore for npm (减小镜像体积)
# 依赖和构建产物
node_modules
.next
.npm
.pnpm-store
.yarn
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# 包管理器锁文件 (保留npm排除其他)
pnpm-lock.yaml
yarn.lock
# 版本控制
.git
.gitignore
# CI/CD
.github
.gitlab-ci.yml
# 开发工具和编辑器配置
.vscode
.cursor
.idea
*.swp
*.swo
.editorconfig
# 环境变量文件(保留.env以支持生产环境配置
.env.*
!.env
!.env.example
# 测试和覆盖率
coverage
.nyc_output
test-results
*.test.*
*.spec.*
__tests__
# 文档和说明文件
*.md
!README.md
LICENSE
CHANGELOG*
# 临时文件和系统文件
.DS_Store
*.tmp
*.temp
Thumbs.db
.directory
.Trash-*
# Docker 相关文件(避免递归复制)
Dockerfile*
docker-compose*.yml
.dockerignore
# 其他开发文件
.next.config.js.backup
.eslintcache
.stylelintcache