-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
84 lines (69 loc) · 1.33 KB
/
.dockerignore
File metadata and controls
84 lines (69 loc) · 1.33 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
# =============================================================================
# Docker Build Context Optimization for PiSovereign
# Reduces build context size and improves caching
# =============================================================================
# Build artifacts
target/
*.rs.bk
# Git
.git/
.gitignore
.gitattributes
# IDE and editor files
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
# Documentation (built separately)
docs/
*.md
!README.md
# CI/CD configuration
.github/
.gitlab-ci.yml
.travis.yml
azure-pipelines.yml
# Local configuration
.env
.env.*
!.env.example
config.local.toml
*.local.toml
# Test fixtures and coverage
coverage/
*.lcov
lcov.info
tarpaulin-report.html
# Grafana/Prometheus (mounted separately in docker-compose)
grafana/
# Benchmarks (not needed in production image)
benches/
# Development tools configuration
deny.toml
release-please-config.json
.release-please-manifest.json
rustfmt.toml
clippy.toml
.cargo/
# Justfile (development only)
Justfile
# Docker files (prevent recursive inclusion)
Dockerfile*
docker-compose*.yml
.dockerignore
# Frontend build artifacts (built in Docker Stage 1, must not leak from host)
crates/presentation_web/dist/
crates/presentation_web/frontend/node_modules/
# Temporary files
tmp/
temp/
*.tmp
*.temp
*.log
# Secrets (should never be in context)
*.pem
*.key
*.crt
secrets/