Spaces:
Sleeping
Sleeping
Update env
Browse files- Dockerfile +5 -0
- requirements.txt +1 -1
Dockerfile
CHANGED
|
@@ -4,6 +4,11 @@ COPY . .
|
|
| 4 |
|
| 5 |
WORKDIR /
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
| 8 |
|
| 9 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 4 |
|
| 5 |
WORKDIR /
|
| 6 |
|
| 7 |
+
# --- Debugging lines ---
|
| 8 |
+
RUN ls -la /
|
| 9 |
+
RUN cat /requirements.txt
|
| 10 |
+
# --- End Debugging lines ---
|
| 11 |
+
|
| 12 |
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
| 13 |
|
| 14 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
requirements.txt
CHANGED
|
@@ -24,4 +24,4 @@ pycocotools
|
|
| 24 |
huggingface_hub==0.25.0
|
| 25 |
fastapi==0.109.0
|
| 26 |
uvicorn
|
| 27 |
-
pandas
|
|
|
|
| 24 |
huggingface_hub==0.25.0
|
| 25 |
fastapi==0.109.0
|
| 26 |
uvicorn
|
| 27 |
+
pandas==2.0.3
|