-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
38 lines (31 loc) · 832 Bytes
/
.dockerignore
File metadata and controls
38 lines (31 loc) · 832 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
# =============================================================================
# .dockerignore — Exclude files from the Docker build context
# Keeps the context small and avoids leaking secrets
# =============================================================================
# Rust build artifacts (large — must exclude or builds will be very slow)
target/
# Node.js build artifacts
dashboard/node_modules/
dashboard/.vite/
dashboard/dist/
# The built frontend is generated inside Docker — don't copy it in
web/
# Docker compose files (not needed in the image)
docker-compose.dev.yaml
# Git history
.git/
.gitignore
# Environment files — secrets must not leak into the image
.env
.env.*
!.env.example
# Editor / OS noise
.DS_Store
.idea/
.vscode/
*.swp
*.swo
# Docs / CI (not needed in the image)
*.md
.github/
.git/