Tegaconsult commited on
Commit
1294fa6
·
verified ·
1 Parent(s): 20a9b67

Update .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +62 -0
.dockerignore ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Environment files
2
+ .env
3
+ .env.example
4
+
5
+ # Python
6
+ __pycache__/
7
+ *.py[cod]
8
+ *$py.class
9
+ *.so
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ *.egg-info/
24
+ .installed.cfg
25
+ *.egg
26
+
27
+ # Virtual environments
28
+ venv/
29
+ ENV/
30
+ env/
31
+
32
+ # IDE
33
+ .vscode/
34
+ .idea/
35
+ *.swp
36
+ *.swo
37
+ *~
38
+
39
+ # OS
40
+ .DS_Store
41
+ Thumbs.db
42
+
43
+ # Git
44
+ .git/
45
+ .gitignore
46
+ .gitattributes
47
+
48
+ # Documentation
49
+ BUILD_CHECKLIST.md
50
+
51
+ # Tests
52
+ test_api.py
53
+
54
+ # Model files (downloaded at runtime)
55
+ *.onnx
56
+ *.pkl
57
+ *.h5
58
+ *.pt
59
+ *.pth
60
+
61
+ # Logs
62
+ *.log