-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
222 lines (194 loc) · 2.77 KB
/
Copy path.dockerignore
File metadata and controls
222 lines (194 loc) · 2.77 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
# Security: Exclude sensitive files and secrets
.env
.env.*
!.env.example
secrets/
*.pem
*.key
*.crt
*.cert
*.p12
*.pfx
*.jks
*.keystore
*.token
*.credential
*.secret
# Git files (not needed in container)
.git/
.gitignore
.gitattributes
.gitmodules
.github/
# Virtual environments (not needed in container)
.venv/
venv/
env/
ENV/
env.bak/
venv.bak/
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
# Node.js (handled in multi-stage build, but exclude to reduce context size)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
.npm/
.yarn/
# Build artifacts (will be built in container)
build/
dist/
*.egg-info/
.eggs/
eggs/
develop-eggs/
downloads/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg
MANIFEST
# Frontend build (will be built in multi-stage)
src/ui/web/build/
src/ui/web/.cache/
src/ui/web/node_modules/
src/ui/web/.env.local
src/ui/web/.env.development.local
src/ui/web/.env.test.local
src/ui/web/.env.production.local
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.project
.classpath
.settings/
*.sublime-project
*.sublime-workspace
# OS files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini
# Logs
*.log
logs/
*.log.*
# Database files (not needed in container)
*.db
*.sqlite
*.sqlite3
*.sql
# User uploads and runtime data
data/uploads/
data/sample/*_results.json
data/sample/*_demo*.json
data/sample/pipeline_test_results/
document_statuses.json
phase1_phase2_forecasts.json
rapids_gpu_forecasts.json
historical_demand_summary.json
build-info.json
# Test files and coverage
tests/
test_*.py
*_test.py
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
.tox/
.nox/
# Documentation (not needed at runtime)
docs/
*.md
!README.md
LICENSE
CHANGELOG.md
DEPLOYMENT.md
QUICK_START.md
SECURITY.md
PRD.md
Functional*.md
REQUIREMENTS*.md
USE_CASES*.md
UNNECESSARY_FILES.md
# Jupyter notebooks
notebooks/
.ipynb_checkpoints
*.ipynb
# Temporary files
tmp/
temp/
*.tmp
*.bak
*.swp
*.swo
*~
# Docker files (not needed in image)
Dockerfile*
docker-compose*.yml
docker-compose*.yaml
.dockerignore
# CI/CD files
.github/
.gitlab-ci.yml
.travis.yml
.circleci/
Jenkinsfile
# Deployment configs (not needed in runtime image)
deploy/
monitoring/
nginx.conf
# Scripts (not needed in runtime, only source code)
scripts/
# Type checking and linting
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
.pytype/
.ruff_cache/
# Other development files
.python-version
Pipfile
Pipfile.lock
poetry.lock
pyproject.toml
setup.py
setup.cfg
MANIFEST.in
requirements*.txt
!requirements.docker.txt
# Celery
celerybeat-schedule
celerybeat.pid
# Rope
.ropeproject
# mkdocs
site/
# Spyder
.spyderproject
.spyproject
# PEP 582
__pypackages__/
# SageMath
*.sage.py
# Local configuration
local_settings.py
local_config.py
config.local.*