ffmpeg / Dockerfile
mkozak's picture
try out
1b6025d unverified
raw
history blame
293 Bytes
FROM python:3.10
RUN apt-get update && \
apt install -y ffmpeg --no-recommends
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]