Rox-Turbo commited on
Commit
c1c870d
·
verified ·
1 Parent(s): 5ff82ab

Update .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +51 -8
.dockerignore CHANGED
@@ -1,15 +1,58 @@
 
1
  __pycache__/
2
  *.py[cod]
3
- *.pyo
4
- *.pyd
5
  .Python
6
- env/
7
  venv/
8
- .venv/
9
- build/
10
- dist/
11
  *.egg-info/
12
- .git
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  .gitignore
14
- .env
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
 
 
 
 
 
 
1
+ # Python
2
  __pycache__/
3
  *.py[cod]
4
+ *$py.class
5
+ *.so
6
  .Python
 
7
  venv/
8
+ env/
9
+ ENV/
 
10
  *.egg-info/
11
+ .pytest_cache/
12
+
13
+ # Environment
14
+ .env.local
15
+ .env.*.local
16
+
17
+ # Documentation (not needed in container)
18
+ QUICKSTART.md
19
+ INTEGRATION_GUIDE.md
20
+ API_REFERENCE.md
21
+ EXAMPLES.md
22
+ DEPLOYMENT.md
23
+ DOCUMENTATION.md
24
+ CONTRIBUTING.md
25
+ TROUBLESHOOTING.md
26
+ AGENT_USAGE.md
27
+
28
+ # Test files
29
+ test-*.js
30
+ test-*.html
31
+ test-*.py
32
+ debug_*.py
33
+
34
+ # Git
35
+ .git/
36
  .gitignore
37
+ .gitattributes
38
+
39
+ # IDE
40
+ .vscode/
41
+ .idea/
42
+ *.swp
43
+ *.swo
44
+ .DS_Store
45
+
46
+ # Docker
47
+ Dockerfile
48
+ docker-compose.yml
49
+ .dockerignore
50
+
51
+ # Logs
52
+ *.log
53
+ logs/
54
 
55
+ # Misc
56
+ *.bak
57
+ *.tmp
58
+ .cache/