-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
111 lines (86 loc) · 1.2 KB
/
Copy path.dockerignore
File metadata and controls
111 lines (86 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# 依赖目录
node_modules
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Next.js 构建输出
.next/
out/
# 生产构建
build
# 环境变量文件
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# 调试日志
*.log
# 运行时数据
pids
*.pid
*.seed
*.pid.lock
# 覆盖率目录
coverage/
# nyc 测试覆盖率
.nyc_output
# 依赖锁定文件(保留 package-lock.json)
yarn.lock
# 可选的 npm 缓存目录
.npm
# 可选的 eslint 缓存
.eslintcache
# 微束缓存
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# 可选的 REPL 历史
.node_repl_history
# 输出的 npm 包
*.tgz
# Yarn 完整性文件
.yarn-integrity
# parcel-bundler 缓存
.cache
.parcel-cache
# Next.js 构建输出
.next
# Nuxt.js 构建 / 生成输出
.nuxt
dist
# Storybook 构建输出
.out
.storybook-out
# 临时文件夹
tmp/
temp/
# 编辑器和 IDE 文件
.vscode/
.idea/
*.swp
*.swo
# 操作系统生成的文件
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Git 相关
.git/
.gitignore
# Docker 相关
Dockerfile*
.dockerignore
# 文档
README.md
*.md
# 测试文件
__tests__/
**/*.test.js
**/*.test.ts
**/*.spec.js
**/*.spec.ts