forked from databuddy-analytics/Databuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
85 lines (71 loc) · 1.27 KB
/
.dockerignore
File metadata and controls
85 lines (71 loc) · 1.27 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
# Dependencies
**/node_modules
**/.next
**/dist
# Development
**/.git
**/.github
**/.vscode
**/.idea
**/*.log
**/.env*
**/.dev.vars
# Build outputs
**/build
**/.turbo
**/.wrangler
# Test files
**/__tests__
**/*.test.*
**/*.spec.*
# Documentation
**/*.md
**/docs
**/LICENSE
# Other
**/.DS_Store
**/.env.local
**/.env.development.local
**/.env.test.local
**/.env.production.local
# Node Dependencies (these should be installed *inside* the Docker image)
# Matches node_modules at the root and in any subdirectory (apps/*, packages/*)
**/node_modules
node_modules
# Turborepo Cache & Logs
.turbo
*.log
# Build Artifacts (these should be generated *inside* the builder stage)
# Add any other build output directories your apps/packages might use
**/dist
**/build
**/.next
**/out
dist
build
.next
out
# Local Environment Variables & Secrets
# Avoid baking secrets into the image. Use runtime ENV variables or Docker secrets.
.env*
!.env.example
!.env.template
# Test Reports & Coverage
coverage
**/coverage
lcov.info
*.lcov
# Operating System / Editor specific files
.DS_Store
Thumbs.db
.idea
.vscode
# Dependency Debug Logs
npm-debug.log*
yarn-error.log*
yarn-debug.log*
# Optional: TypeScript build info cache (if using)
*.tsbuildinfo
# Optional: Specific temporary files or folders
tmp/
temp/