-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
78 lines (65 loc) · 1.43 KB
/
.dockerignore
File metadata and controls
78 lines (65 loc) · 1.43 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
# Keep go.work and go.work.sum (needed for workspace)
# Keep apps/api/ (our source code)
# Git
.git
.gitignore
.github
# Documentation
docs
README.md
AGENTS.md
# Frontend/Dashboard (not needed for API build)
# Note: apps/dashboard is excluded for API builds but needed for dashboard builds
# Dashboard builds use docker-compose.dashboard.yml which may need different ignore rules
node_modules
.nx
packages/dashboard
packages/database
# Note: packages/proto is needed for dashboard builds, so we don't exclude it here
# packages/proto/src/generated
# packages/proto/src
# packages/proto/proto
# Build artifacts
*.test
*.out
*.exe
dist
build
# Environment files
.env
.env.*
!.env.example
# IDE
.vscode
.idea
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Temporary files
*.tmp
*.log
tmp
temp
# Docker compose files (not needed in build)
docker-compose*.yml
# Monitoring and tools
# Note: tools directory is needed for dashboard builds
monitoring
# tools
specs
# Package managers
# Note: These are needed for dashboard builds, but excluded for API builds
# pnpm-lock.yaml
# package.json
# tsconfig*.json
# Other packages (if not referenced by API)
# Note: packages/config, packages/docker, packages/types, and packages/proto are needed for dashboard builds
# packages/proto is needed for dashboard builds (includes generated files)
# packages/config
# packages/docker
# packages/types
# packages/proto/src/generated
# packages/proto/src
# packages/proto/proto