Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 270 Bytes
cf6b3c9 fd8a350 cf6b3c9 8315e87 cf6b3c9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.9
WORKDIR /app
RUN apt-get update && apt-get install -y ffmpeg && apt-get clean
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY ./*.py /app/
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |