Spaces:
Runtime error
Runtime error
File size: 262 Bytes
706ef86 392d31b 706ef86 9850062 b1dc78d 9850062 706ef86 392d31b 0a58fb3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM python:3.10
WORKDIR /code
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg llvm
COPY . .
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |