-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy path.dockerignore
More file actions
71 lines (57 loc) · 1.18 KB
/
Copy path.dockerignore
File metadata and controls
71 lines (57 loc) · 1.18 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
# Dependencies — reinstalled inside the image via npm ci
node_modules/
dashboard/node_modules/
# Build output — rebuilt inside the image; local output/caches must not leak
# into the builder's `COPY . .` (a stale tsbuildinfo can poison the build)
dist/
dashboard/dist/
*.tsbuildinfo
# Test coverage
coverage/
# Environment files — secrets, never a build input (every variant, any depth)
.env*
**/.env*
# Data files — runtime state (sessions, media, databases, API keys), never
# part of the build context
data/
*.db
*.sqlite
*.sqlite3
# VCS metadata — not a build input; keeps history/hooks out of the context
.git/
# Private working material — internal notes that must never enter the build
# context, the build cache, or any image layer
_docs/
# Agent/tool workspaces and caches — local-only, not build inputs
.agent/
.claude/
.kimi-worktrees/
.playwright-mcp/
.remember/
.superpowers/
.worktrees/
.wwebjs_cache/
CLAUDE.md
docs/plans/
docs/superpowers/
# IDE
.idea/
.vscode/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Logs
logs/
*.log
npm-debug.log*
# Temporary files
tmp/
temp/
# Docker
.docker/
# Debug
.pnpm-debug.log*
# Helm chart — deployment artifact, not a build input
charts/