-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.dockerignore
More file actions
151 lines (130 loc) · 2.06 KB
/
Copy path.dockerignore
File metadata and controls
151 lines (130 loc) · 2.06 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# Build outputs
**/bin/
**/obj/
**/target/
**/.data/
**/logs/
**/keystore/
# Dependencies
**/node_modules/
**/packages/
# Database and data files
**/nethermind_data/
**/nethermind_db/
**/*.db
**/*.ldb
# Git and version control
.git/
.gitignore
.gitmodules
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Logs and temporary files
*.log
*.tmp
*.temp
# Test results
**/TestResults/
**/coverage/
**/test-coverage/
# Docker files (we're building one)
**/Dockerfile*
**/docker-compose*
# Scripts not needed for build
**/scripts/
**/deployment/
# Arbitrum nitro testnode (large)
arbitrum-nitro/
arbitrum-nitro-testnode/
# Exclude everything except what we explicitly need
# We only need:
# - src/Nethermind/ (submodule)
# - src/Nethermind.Arbitrum/ (our plugin)
# - Directory.*.props and nuget.config
# Additional space-saving exclusions
**/*.log
**/*.tmp
**/tmp/
**/.cache/
**/cache/
**/.npm/
**/.yarn/
**/coverage/
**/*.test
**/*.prof
**/*.rlib
**/*.rmeta
**/*.d
**/build/
**/.DS_Store
# .NET specific exclusions
**/bin/Debug/
**/bin/Release/
**/obj/Debug/
**/obj/Release/
**/.vs/
**/.vscode/settings.json
**/.vscode/launch.json
**/.vscode/tasks.json
**/packages/
**/TestResults/
**/*.nupkg
**/*.snupkg
**/.nuget/
**/artifacts/
# Nethermind specific exclusions
**/nethermind_data/
**/nethermind_db/
**/keystore/
**/logs/
**/*.db
**/*.ldb
**/data/
**/chaindata/
# Test and benchmark files
**/benchmarks/
**/test-results/
**/coverage-reports/
**/*.trx
**/*.coverage
**/*.coveragexml
# Documentation and examples
**/docs/
**/examples/
**/*.md
!**/AnalyzerReleases.*.md
!README.md
# Git and CI files
.git/
.github/
**/.gitignore
**/.gitmodules
**/.gitattributes
# IDE and editor files
**/.idea/
**/.rider/
**/*.swp
**/*.swo
**/*~
**/*.orig
# OS specific files
**/Thumbs.db
**/.DS_Store
**/desktop.ini
# Large test data and resources
**/test-data/
**/test-vectors/
**/large-files/
**/sample-data/
# Re-include scripts needed for Docker builds (must be at end to override earlier exclusions)
!scripts/
!scripts/build/
!scripts/build/*
!scripts/diag-entrypoint.sh