Leo commited on
Commit
8d55e58
·
1 Parent(s): 382aec4

Add .dockerignore to exclude secrets and cache

Browse files
Files changed (1) hide show
  1. .dockerignore +20 -0
.dockerignore ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Prevent secrets and junk from being baked into Docker images
2
+
3
+ # Secrets
4
+ .env
5
+ .env.*
6
+
7
+ # macOS junk
8
+ .DS_Store
9
+
10
+ # Python cache
11
+ __pycache__/
12
+ *.py[cod]
13
+
14
+ # Virtual environments
15
+ .venv/
16
+ venv/
17
+
18
+ # Git stuff (optional)
19
+ .git
20
+ .gitignore