Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -2,5 +2,5 @@ FROM python:3.11-slim-bookworm
|
|
| 2 |
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
|
| 3 |
COPY . /app
|
| 4 |
WORKDIR /app
|
| 5 |
-
RUN pip install -r requirements.txt
|
| 6 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 2 |
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
|
| 3 |
COPY . /app
|
| 4 |
WORKDIR /app
|
| 5 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 6 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|