Spaces:
Runtime error
Runtime error
Varun Israni commited on
Commit ·
85a42fe
1
Parent(s): d8bf5a2
- Dockerfile +5 -14
- requirements.txt +3 -2
Dockerfile
CHANGED
|
@@ -1,16 +1,7 @@
|
|
| 1 |
-
|
| 2 |
-
# you will also find guides on how best to write your Dockerfile
|
| 3 |
-
|
| 4 |
-
FROM python:3.9
|
| 5 |
-
|
| 6 |
-
RUN useradd -m -u 1000 user
|
| 7 |
-
USER user
|
| 8 |
-
ENV PATH="/home/user/.local/bin:$PATH"
|
| 9 |
-
|
| 10 |
WORKDIR /app
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
COPY --chown=user . /app
|
| 16 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 1 |
+
FROM python:3.9-slim
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
WORKDIR /app
|
| 3 |
+
COPY requirements.txt .
|
| 4 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 5 |
+
COPY . .
|
| 6 |
+
ENV PORT=7860
|
|
|
|
| 7 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
requirements.txt
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
|
|
| 1 |
fastapi
|
| 2 |
-
uvicorn
|
| 3 |
python-dotenv
|
| 4 |
requests
|
| 5 |
Pillow
|
| 6 |
-
openai
|
|
|
|
| 1 |
+
# Requirements for FastAPI Video Generation App on Hugging Face Spaces
|
| 2 |
fastapi
|
| 3 |
+
uvicorn[standard]
|
| 4 |
python-dotenv
|
| 5 |
requests
|
| 6 |
Pillow
|
| 7 |
+
openai
|