Spaces:
Sleeping
Sleeping
Commit ·
406462a
1
Parent(s): 5c62a8c
rag change
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
FROM python:3.12-slim
|
| 2 |
-
|
| 3 |
-
|
| 4 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 5 |
EXPOSE 8000
|
| 6 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
|
|
|
|
| 1 |
FROM python:3.12-slim
|
| 2 |
+
WORKDIR /app
|
| 3 |
+
COPY . /app
|
| 4 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 5 |
EXPOSE 8000
|
| 6 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
|