ffmpeg / Dockerfile
mkozak's picture
fix apt
4313d9e unverified
raw
history blame contribute delete
301 Bytes
FROM python:3.10
RUN apt-get update && \
apt install -y ffmpeg --no-install-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"]