-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy path.dockerignore
More file actions
84 lines (69 loc) · 1.09 KB
/
.dockerignore
File metadata and controls
84 lines (69 loc) · 1.09 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
# Ignore node_modules directories
**/node_modules/
node_modules/
# Ignore build outputs
**/bin/
**/obj/
**/dist/
**/build/
**/out/
**/target/
# Ignore package manager files
package-lock.json
yarn.lock
pnpm-lock.yaml
# Ignore IDE and editor files
.vs/
.vscode/
.idea/
*.swp
*.swo
*~
# Ignore OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Ignore git files
.git/
.gitignore
# Ignore Docker files
Dockerfile*
.dockerignore
docker-compose*.yml
# Ignore test results
TestResults/
**/*.trx
**/*.coverage
# Ignore logs
*.log
logs/
**/*.log
# Ignore temporary files
tmp/
temp/
*.tmp
*.temp
# Ignore documentation
README.md
docs/
*.md
# Ignore configuration files that shouldn't be in container
# Development and example configs are excluded
appsettings.Development.json
appsettings.*.example.json
appsettings.pushover.example.json
# Ignore Azure and deployment files
azure.yaml
infra/
scripts/
# Ignore test projects (since we only want to build the API)
tests/
# Keep only what's needed for the API build
!src/API/
!src/Core/
!src/Infrastructure/
!src/Connectors/