absiitr commited on
Commit
8a3db9b
·
verified ·
1 Parent(s): b2fb563

Create .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +31 -0
.dockerignore ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ---------------- Python ----------------
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
6
+
7
+ # ---------------- Virtual Envs ----------------
8
+ .venv/
9
+ venv/
10
+ env/
11
+
12
+ # ---------------- Secrets ----------------
13
+ .env
14
+ .env.*
15
+
16
+ # ---------------- Git ----------------
17
+ .git/
18
+ .gitignore
19
+
20
+ # ---------------- IDE / OS ----------------
21
+ .idea/
22
+ .vscode/
23
+ .DS_Store
24
+
25
+ # ---------------- Caches ----------------
26
+ .cache/
27
+ pip-wheel-metadata/
28
+
29
+ # ---------------- Model / Vector DB caches ----------------
30
+ .huggingface/
31
+ chroma/