-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.dockerignore
More file actions
76 lines (62 loc) · 1.32 KB
/
.dockerignore
File metadata and controls
76 lines (62 loc) · 1.32 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
# =============================================================================
# Docker ignore for wright worker
#
# NOTE: When building from the repo root (docker build -f apps/worker/Dockerfile .),
# place a copy of this file at the repo root as .dockerignore, since Docker
# reads .dockerignore from the build context root.
# =============================================================================
# Dependencies (installed inside container)
**/node_modules/
**/.pnpm-store/
# Build artifacts (rebuilt inside container)
**/dist/
**/*.tsbuildinfo
**/.turbo/
# Version control
.git/
**/.git/
**/.gitignore
# IDE / Editor
**/.vscode/
**/.idea/
**/*.swp
**/*.swo
**/.*~
# Environment / Secrets
**/.env
**/.env.*
**/.env.local
**/.env.*.local
# OS junk
**/.DS_Store
**/Thumbs.db
# Documentation (not needed in image)
**/README.md
**/CHANGELOG.md
**/LICENSE
**/docs/
# Tests (not needed in runtime image)
**/__tests__/
**/*.test.ts
**/*.test.js
**/*.spec.ts
**/*.spec.js
**/coverage/
# CI/CD configs
**/.github/
**/.gitlab-ci.yml
# Supabase (not needed in worker image)
supabase/
# Claude config
**/.claude/
# Fly configs (not needed inside image)
**/fly.toml
# Logs
**/*.log
**/npm-debug.log*
**/pnpm-debug.log*
# Docker files (prevent recursive context issues)
**/Dockerfile
**/Dockerfile.*
**/.dockerignore
**/docker-compose*.yml