-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.dockerignore
More file actions
60 lines (47 loc) · 1.04 KB
/
Copy path.dockerignore
File metadata and controls
60 lines (47 loc) · 1.04 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
# ---- Docker build context pruning for Kord ----
# Keep this lean: everything excluded here is NOT sent to the Docker daemon.
# Rust / Cargo build artifacts
target/
**/target/
# Incremental & profiling caches
.cargo/
# Git metadata (not needed inside image)
.git
.gitignore
.gitattributes
# Editor / IDE / tooling
.vscode/
.idea/
*.iml
# Node / JS (future web tooling)
node_modules/
npm-debug.log*
yarn.lock
pnpm-lock.yaml
# Logs & temp
*.log
*.tmp
*.swp
*.swo
# OS cruft
.DS_Store
Thumbs.db
# Test output, coverage, reports
coverage/
reports/
# Generic web build / bundler outputs (cargo-leptos will rebuild these)
dist/
pkg/
site/
# Wasm artifacts (rebuilt as needed)
*.wasm
# Docker local cache dirs (if any)
.docker/
# Exclude large sample/audio assets (currently not required in build context
kord/samples/
kord/noise/
.hidden/
# NOTE: Intentionally NOT ignoring:
# - Cargo.lock (improves deterministic caching)
# - model/ (needed for inference)
# Adjust above if you build a minimal runtime image that downloads model assets separately.