增加docker编译
This commit is contained in:
100
.dockerignore
Normal file
100
.dockerignore
Normal file
@@ -0,0 +1,100 @@
|
||||
# 依赖目录
|
||||
node_modules
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# 构建输出
|
||||
.nuxt
|
||||
.output
|
||||
dist
|
||||
|
||||
# 环境变量文件
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# 日志文件
|
||||
*.log
|
||||
|
||||
# 运行时数据
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# 覆盖率目录
|
||||
lib-cov
|
||||
coverage
|
||||
*.lcov
|
||||
|
||||
# nyc测试覆盖率
|
||||
.nyc_output
|
||||
|
||||
# 依赖目录
|
||||
node_modules
|
||||
jspm_packages
|
||||
|
||||
# 可选的npm缓存目录
|
||||
.npm
|
||||
|
||||
# 可选的eslint缓存
|
||||
.eslintcache
|
||||
|
||||
# 微包
|
||||
.pnp
|
||||
.pnp.js
|
||||
|
||||
# 测试覆盖率
|
||||
coverage
|
||||
|
||||
# 生产构建文件
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# 调试日志
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# 本地环境文件
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# 编辑器目录和文件
|
||||
.vscode
|
||||
.idea
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# 操作系统生成的文件
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Git
|
||||
.git
|
||||
.gitignore
|
||||
|
||||
# Docker
|
||||
Dockerfile
|
||||
.dockerignore
|
||||
|
||||
# 其他
|
||||
README.md
|
Reference in New Issue
Block a user