Inayatgaming commited on
Commit
0041e65
·
verified ·
1 Parent(s): 6ed7806

Create .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +45 -0
.dockerignore ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.so
5
+ *.egg-info/
6
+
7
+ # Virtual environments
8
+ .venv/
9
+ venv/
10
+ env/
11
+
12
+ # Git
13
+ .git/
14
+ .gitignore
15
+
16
+ # IDEs
17
+ .vscode/
18
+ .idea/
19
+
20
+ # Logs
21
+ *.log
22
+
23
+ # Cache
24
+ .pytest_cache/
25
+ .mypy_cache/
26
+ .cache/
27
+
28
+ # OS files
29
+ .DS_Store
30
+ Thumbs.db
31
+
32
+ # Environment
33
+ .env
34
+
35
+ # Local audio/temp files
36
+ *.wav
37
+ *.mp3
38
+ *.ogg
39
+ *.flac
40
+ *.m4a
41
+ tmp/
42
+ temp/
43
+
44
+ # Hugging Face cache (don't include local cache in image)
45
+ data/