polarbearblue commited on
Commit
4b33f50
·
verified ·
1 Parent(s): e7d55e7

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
+ *$py.class
5
+ *.so
6
+ .Python
7
+ env/
8
+ venv/
9
+ ENV/
10
+ env.bak/
11
+ venv.bak/
12
+
13
+ # IDE
14
+ .vscode/
15
+ .idea/
16
+ *.swp
17
+ *.swo
18
+
19
+ # OS
20
+ .DS_Store
21
+ Thumbs.db
22
+
23
+ # Git
24
+ .git/
25
+ .gitignore
26
+
27
+ # Docker
28
+ Dockerfile
29
+ docker-compose.yml
30
+ .dockerignore
31
+
32
+ # Logs
33
+ logs/
34
+ *.log
35
+
36
+ # Documentation
37
+ README.md
38
+ *.md
39
+
40
+ # Test files
41
+ test_*
42
+ *_test.py
43
+
44
+ # Other
45
+ novel/