-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy path.dockerignore
More file actions
59 lines (53 loc) · 1.03 KB
/
.dockerignore
File metadata and controls
59 lines (53 loc) · 1.03 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
# ── Exclude everything heavy first ──
/.git
.DS_Store
**/.DS_Store
*.log
**/*.log
.cache
**/.cache
.turbo
**/.turbo
.vercel
**/.vercel
.buildx-cache
**/.buildx-cache
# ── Env files ──
**/.env
**/.env.*
# ── Test files ──
tests
**/tests
!core/tests
!core/tests/**
!core/kortix-master/tests
!core/kortix-master/tests/**
*.test.ts
*.test.tsx
*.spec.ts
*.spec.tsx
__tests__
**/__tests__
coverage
**/coverage
# ── Build artifacts ──
dist
**/dist
docs
**/docs
*.md
!core/kortix-master/opencode/**/*.md
# ── Node modules (exclude all EXCEPT standalone output) ──
# The standalone output is self-contained and MUST keep its node_modules.
# We exclude node_modules broadly, then whitelist the standalone tree.
node_modules
**/node_modules
# ── Next.js build outputs ──
.next
**/.next
# ── Whitelist: frontend standalone output (MUST come LAST to override excludes above) ──
!apps/web/.next
!apps/web/.next/standalone
!apps/web/.next/standalone/**
!apps/web/.next/static
!apps/web/.next/static/**