audio / Dockerfile
gleison
change docker
706ef86
raw
history blame contribute delete
262 Bytes
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"]