-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.dockerignore
More file actions
88 lines (78 loc) · 1.02 KB
/
.dockerignore
File metadata and controls
88 lines (78 loc) · 1.02 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
# --- Caches (recursive) ---
**/__pycache__/
**/.pytest_cache/
**/.mypy_cache/
**/.ruff_cache/
**/.ipynb_checkpoints/
# --- Python envs & builds ---
.venv/
env/
venv/
dist/
build/
.eggs/
*.egg-info/
# --- Node/JS ---
node_modules/
**/node_modules/
*.tsbuildinfo
**/.vite/
**/.cache/
**/dist/
**/build/
**/coverage/
**/htmlcov/
**/*.map
**/dist/
# --- OS / editors ---
.DS_Store
.idea/
.vscode/
# --- Test / coverage ---
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
# --- VCS & env files ---
.git
.gitignore
.env
.env.*
# --- Databases & data dumps (can be huge) ---
*.sqlite*
*.db
*.parquet
*.feather
*.arrow
*.csv
*.tsv
*.ndjson
*.gz
*.zip
*.tar
*.tar.gz
# --- Geospatial heavies ---
*.tif
*.tiff
*.gpkg
*.mbtiles
*.shp
*.prj
*.shx
*.dbf
*.geojson
# --- Logs ---
*.log
logs/
# --- Local runtime data dirs (don’t bake into image) ---
elasticsearch-data/
paradedb-data/
data/
backend/data/
backend/logs/
backend/tmp/
# --- Optional: keep small in-repo samples available to builds ---
#!samples/**