forked from openclaw/openclaw
-
Notifications
You must be signed in to change notification settings - Fork 379
Expand file tree
/
Copy path.dockerignore
More file actions
106 lines (93 loc) · 1.45 KB
/
.dockerignore
File metadata and controls
106 lines (93 loc) · 1.45 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
# Git and version control
.git
.gitignore
.gitattributes
.worktrees
# Build tools cache
.bun-cache
.bun
.turbo
**/.turbo
.cache
**/.cache
.pnpm-store
**/.pnpm-store
# Node modules (will be reinstalled)
node_modules
**/node_modules
# Temporary files
.tmp
**/.tmp
tmp
**/tmp
*.log
# OS files
.DS_Store
**/.DS_Store
.AppleDouble
Thumbs.db
# IDE and editor files
.vscode
.idea
*.swp
*.swo
*~
.env.local
.env.*.local
# Media files (large, not needed in Docker)
*.png
*.jpg
*.jpeg
*.webp
*.gif
*.mp4
*.mov
*.wav
*.mp3
*.pdf
# Build artifacts (will be regenerated)
dist
# extensions/*/dist 需要保留(插件预编译产物)
!extensions/*/dist
!extensions/*/dist/**
apps/macos/.build
apps/ios/build
**/*.trace
.next
**/.next
# Test and coverage files
coverage
**/coverage
*.test.*
*.spec.*
test/
tests/
# Large app trees not needed for CLI build
apps/
assets/
Peekaboo/
Swabble/
Core/
Users/
vendor/
# CI/CD and development files
.github
.gitlab-ci.yml
.circleci
Jenkinsfile
.env
.env.example
# scripts/ 需要保留给 Dockerfile 使用
# docs/ 需要保留运行时使用(包含 templates)
# 但保留 extensions/ 目录中的源代码和编译结果(plugins 必需)
# 只排除 extensions 中的开发文件
# extensions/*/node_modules 会在构建时自动安装
# extensions/*/.turbo 和其他缓存已通过上面的规则排除
# Package manager lock files (will be regenerated)
yarn.lock
package-lock.json
# Misc
README.md
LICENSE
CHANGELOG.md
CONTRIBUTING.md