-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
69 lines (57 loc) · 768 Bytes
/
Copy path.dockerignore
File metadata and controls
69 lines (57 loc) · 768 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
# Dependencies (installed fresh in container)
node_modules/
.venv/
venv/
__pycache__/
*.pyc
# IDE
.idea/
.vscode/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Environment/Secrets (NEVER include in image)
.env
.env.*
docker/.env
*.pem
credentials.json
# Git
.git/
.gitignore
# Build artifacts (rebuilt in container)
dist/
build/
.next/
*.egg-info/
*.tsbuildinfo
# Turbo/Bun cache
.turbo/
bun.lockb
# Claude Code
.claude/
# Documentation (not needed in runtime image)
docs/
*.md
!README.md
# Tests (not needed in production image)
**/*.test.ts
**/*.spec.ts
**/test/
**/tests/
**/__tests__/
# Development files
STATE.txt
plan.txt
.ai/
thoughts/
SPEC*.md
RALPH.md
# Docker files (avoid recursive copy)
Dockerfile*
docker-compose*.yml
.dockerignore
# GitHub
.github/