vectorplasticity commited on
Commit
894a94a
·
verified ·
1 Parent(s): 7fb9048

Add .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +87 -0
.dockerignore ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtual environments
24
+ venv/
25
+ ENV/
26
+ env/
27
+ .venv/
28
+
29
+ # IDE
30
+ .idea/
31
+ .vscode/
32
+ *.swp
33
+ *.swo
34
+ *~
35
+
36
+ # Testing
37
+ .pytest_cache/
38
+ .coverage
39
+ htmlcov/
40
+ .tox/
41
+ .nox/
42
+
43
+ # Logs and databases
44
+ *.log
45
+ *.sql
46
+ *.sqlite
47
+ *.db
48
+
49
+ # Model files (will be downloaded at runtime)
50
+ *.bin
51
+ *.pt
52
+ *.pth
53
+ *.ckpt
54
+ *.safetensors
55
+ models/
56
+ checkpoints/
57
+
58
+ # Cache
59
+ cache/
60
+ .cache/
61
+ *.cache
62
+
63
+ # OS files
64
+ .DS_Store
65
+ Thumbs.db
66
+
67
+ # Git
68
+ .git/
69
+ .gitignore
70
+ .gitattributes
71
+
72
+ # Docker
73
+ Dockerfile
74
+ .dockerignore
75
+ docker-compose.yml
76
+
77
+ # Documentation
78
+ docs/
79
+ *.md
80
+ !README.md
81
+
82
+ # Misc
83
+ .env.local
84
+ .env.*.local
85
+ *.bak
86
+ *.tmp
87
+ *.temp