Spaces:
Running
Running
Commit
·
5653886
1
Parent(s):
550ec39
Add .dockerignore to exclude vendor directory
Browse files- Exclude vendor directory from Docker build for now
- This will make the build faster and avoid potential issues
- Will integrate MinerU properly in next iteration
- .dockerignore +11 -0
.dockerignore
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
vendor/
|
2 |
+
__pycache__/
|
3 |
+
*.pyc
|
4 |
+
.env
|
5 |
+
.venv/
|
6 |
+
venv/
|
7 |
+
.git/
|
8 |
+
.gitignore
|
9 |
+
*.log
|
10 |
+
test_api_local.py
|
11 |
+
output_*.md
|