Takosaga commited on
Commit
236b10b
Β·
1 Parent(s): 11e477d

feat: add .dockerignore for HF Spaces deployment

Browse files
Files changed (1) hide show
  1. .dockerignore +35 -0
.dockerignore ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ─── Version control ───────────────────────────────────────────────────
2
+ .git/
3
+ .gitignore
4
+
5
+ # ─── Virtual environment (not needed β€” Docker installs deps) ───────────
6
+ .venv/
7
+ venv/
8
+
9
+ # ─── Python cache ──────────────────────────────────────────────────────
10
+ __pycache__/
11
+ *.pyc
12
+ *.pyo
13
+ .pytest_cache/
14
+
15
+ # ─── Model weights β€” downloaded inside Dockerfile, NOT from build context
16
+ .local/models/
17
+
18
+ # ─── Gradio cache ─────────────────────────────────────────────────────
19
+ .gradio/
20
+
21
+ # ─── OS files ──────────────────────────────────────────────────────────
22
+ .DS_Store
23
+ Thumbs.db
24
+
25
+ # ─── Test output files (from tests/test_outputs/) ──────────────────────
26
+ tests/test_outputs/
27
+
28
+ # ─── Lock file β€” not needed inside container (pip install handles it) ──
29
+ uv.lock
30
+
31
+ # ─── Docs / plans (not needed at runtime) ──────────────────────────────
32
+ docs/
33
+
34
+ # ─── Agent conventions (not needed at runtime) ─────────────────────────
35
+ AGENTS.md