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

Create .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +51 -0
.dockerignore ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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/