similarity / Dockerfile
lpedro's picture
Update Dockerfile
e84698a verified
raw
history blame contribute delete
271 Bytes
FROM python:3.11
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"]