-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy path.dockerignore
More file actions
79 lines (65 loc) · 891 Bytes
/
.dockerignore
File metadata and controls
79 lines (65 loc) · 891 Bytes
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
# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Environment files
.env.local
.env.*.local
# Logs
logs/
*.log
# Data files
data/
temp/
redis_data/
# Git
.git/
.gitignore
.gitattributes
# GitHub
.github/
# Documentation
README.md
README_EN.md
CHANGELOG.md
docs/
*.md
# Development files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Docker files
docker-compose.yml
docker-compose.*.yml
Dockerfile
.dockerignore
# Test files
test/
tests/
__tests__/
*.test.js
*.spec.js
coverage/
.nyc_output/
# Build files
# dist/ # 前端构建阶段需要复制源文件,所以不能忽略
build/
*.pid
*.seed
*.pid.lock
# 但可以忽略本地已构建的 dist 目录
web/admin-spa/dist/
# CI/CD
.travis.yml
.gitlab-ci.yml
azure-pipelines.yml
# Package manager files
# package-lock.json # 需要保留此文件以支持 npm ci
yarn.lock
pnpm-lock.yaml
# CLI
cli/