-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.dockerignore
More file actions
67 lines (55 loc) · 826 Bytes
/
.dockerignore
File metadata and controls
67 lines (55 loc) · 826 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
# Ignore version control
.git
.gitignore
# Ignore OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Ignore development files
*.md
README.md
LICENSE
CHANGELOG.md
# Ignore logs
*.log
logs
# Ignore editor files
.vscode
.idea
*.swp
*.swo
*~
# Ignore temporary files
*.tmp
*.temp
# Ignore test files
**/__tests__/**
**/*.test.ts
**/*.spec.ts
test-fix.ts
# Ignore build artifacts
dist/
build/
# Ignore node_modules if any
node_modules/
# Ignore Docker files
Dockerfile*
.dockerignore
docker-compose*.yml
# Ignore local database files (will be created in container)
*.db
*.db-shm
*.db-wal
# Ignore client build artifacts (if this is server-only)
client/dist/
client/node_modules/
# Ignore environment files with secrets
.env
.env.local
.env.development
.env.test
.env.production