MogensR commited on
Commit
bf5fbf4
·
1 Parent(s): 9509888

Update .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +58 -20
.dockerignore CHANGED
@@ -1,51 +1,89 @@
1
- # VCS
 
 
 
 
 
 
2
  .git
3
  .gitignore
4
  .gitattributes
5
 
6
- # Python cache/compiled files
 
 
7
  __pycache__/
8
- *.pyc
9
  *.pyo
10
  *.pyd
11
  *.pdb
 
 
 
12
 
 
13
  # Virtual environments
 
14
  .env
15
  .venv/
16
  env/
17
  venv/
18
 
19
- # OS cruft
20
- .DS_Store
21
- Thumbs.db
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
- # Logs & temp
 
 
24
  *.log
25
  logs/
26
  tmp/
27
  temp/
28
  *.swp
29
 
30
- # Build outputs
31
- dist/
32
- build/
33
- *.egg-info/
34
-
35
- # HuggingFace / Torch caches
36
- .cache/
37
- data/
38
- *.pth
39
- *.pt
40
- *.ckpt
41
-
42
- # Video/image test data
43
  *.mp4
44
  *.avi
45
  *.mov
 
46
  *.png
47
  *.jpg
48
  *.jpeg
 
 
 
 
 
 
 
 
 
 
 
49
 
 
50
  # Node / frontend (if present)
 
51
  node_modules/
 
 
 
 
1
+ # ===========================
2
+ # .dockerignore for HF Spaces
3
+ # ===========================
4
+
5
+ # ---------------------------
6
+ # VCS (never needed in image)
7
+ # ---------------------------
8
  .git
9
  .gitignore
10
  .gitattributes
11
 
12
+ # ---------------------------
13
+ # Python cache / build files
14
+ # ---------------------------
15
  __pycache__/
16
+ *.py[cod]
17
  *.pyo
18
  *.pyd
19
  *.pdb
20
+ *.egg-info/
21
+ dist/
22
+ build/
23
 
24
+ # ---------------------------
25
  # Virtual environments
26
+ # ---------------------------
27
  .env
28
  .venv/
29
  env/
30
  venv/
31
 
32
+ # ---------------------------
33
+ # Hugging Face / Torch caches
34
+ # ---------------------------
35
+ .cache/
36
+ huggingface/
37
+ torch/
38
+ data/
39
+ *.pt
40
+ *.pth
41
+ *.ckpt
42
+
43
+ # ---------------------------
44
+ # HF Space metadata/state
45
+ # ---------------------------
46
+ .hf_space/
47
+ space.log
48
+ gradio_cached_examples/
49
+ gradio_static/
50
+ __outputs__/
51
 
52
+ # ---------------------------
53
+ # Logs & temp files
54
+ # ---------------------------
55
  *.log
56
  logs/
57
  tmp/
58
  temp/
59
  *.swp
60
 
61
+ # ---------------------------
62
+ # Media test assets
63
+ # ---------------------------
 
 
 
 
 
 
 
 
 
 
64
  *.mp4
65
  *.avi
66
  *.mov
67
+ *.mkv
68
  *.png
69
  *.jpg
70
  *.jpeg
71
+ *.gif
72
+
73
+ # ---------------------------
74
+ # OS / IDE cruft
75
+ # ---------------------------
76
+ .DS_Store
77
+ Thumbs.db
78
+ .vscode/
79
+ .idea/
80
+ *.sublime-project
81
+ *.sublime-workspace
82
 
83
+ # ---------------------------
84
  # Node / frontend (if present)
85
+ # ---------------------------
86
  node_modules/
87
+ npm-debug.log
88
+ yarn-debug.log
89
+ yarn-error.log