Spaces:
Runtime error
Runtime error
Commit
·
6a78509
1
Parent(s):
a2be2f1
requirement.ttxt update
Browse files- Dockerfile +6 -0
- requirements.txt +0 -0
Dockerfile
CHANGED
@@ -7,4 +7,10 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
7 |
|
8 |
COPY app/ app/
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
7 |
|
8 |
COPY app/ app/
|
9 |
|
10 |
+
VOLUME /app/vector_store
|
11 |
+
VOLUME /app/uploads
|
12 |
+
VOLUME /app/log_dir
|
13 |
+
VOLUME /app/models
|
14 |
+
|
15 |
+
|
16 |
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
requirements.txt
CHANGED
Binary files a/requirements.txt and b/requirements.txt differ
|
|