MightyOctopus commited on
Commit
db0b1b5
·
verified ·
1 Parent(s): 526eebe

Create .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +40 -0
.dockerignore ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python cache
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
6
+
7
+ # Virtual environments
8
+ .venv/
9
+ env/
10
+ venv/
11
+
12
+ # OS / editor junk
13
+ .DS_Store
14
+ *.swp
15
+ *.swo
16
+
17
+ # Environment & secrets
18
+ .env
19
+ *.pem
20
+
21
+ # Git & version control
22
+ .git
23
+ .gitignore
24
+
25
+ # Gradio auto-generated
26
+ .gradio/
27
+
28
+ # Build / compiled
29
+ *.so
30
+ *.o
31
+ *.out
32
+ *.exe
33
+ build/
34
+ dist/
35
+ *.egg-info/
36
+
37
+ # Databases & logs
38
+ *.db
39
+ *.sqlite3
40
+ *.log