-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
82 lines (70 loc) Β· 2.9 KB
/
.dockerignore
File metadata and controls
82 lines (70 loc) Β· 2.9 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
# .dockerignore β exclude files from Docker build context
#
# Keeping the build context lean reduces image build time and avoids
# accidentally baking secrets, local model weights, or dev artefacts
# into the image layer cache.
# ββ Version control ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
.git
.gitignore
.gitattributes
.github
# ββ Python byte-code / caches ββββββββββββββββββββββββββββββββββββββββββββββββ
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
# ββ Virtual environments ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
.venv/
venv/
env/
.env/
*.egg-info/
squish.egg-info/
# ββ Development, docs, tests βββββββββββββββββββββββββββββββββββββββββββββββββ
tests/
dev/
docs/
demos/
notebooks/
benchmarks/
eval_output*/
# ββ macOS artefacts βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
.DS_Store
apps/macos/
# ββ Node / JS (not needed in server image) βββββββββββββββββββββββββββββββββββ
node_modules/
js/
*.vsix
# ββ Rust build output βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
squish_quant_rs/target/
target/
# ββ Model weights and large data files βββββββββββββββββββββββββββββββββββββββ
models/
*.safetensors
*.safetensors.index.json
*.npy
*.npz
*.bin
*.pt
*.gguf
# ββ Results, figures, coverage βββββββββββββββββββββββββββββββββββββββββββββββ
results/
coverage.json
coverage.xml
.coverage
*.cast
# ββ Local environment files βββββββββββββββββββββββββββββββββββββββββββββββββββ
.env
.env.*
!.env.example
# ββ Editor / IDE ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
.vscode/
.idea/
*.swp
*.swo
# ββ CI / packaging artefacts βββββββββββββββββββββββββββββββββββββββββββββββββ
dist/
build/
*.whl
upload_report.md