diff --git a/Dockerfile b/Dockerfile index 55f5efe..0c6ea1d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,11 @@ # Use official Python image FROM python:3.11-slim +# Install ffmpeg and other dependencies +RUN apt-get update && apt-get install -y \ + ffmpeg \ + && rm -rf /var/lib/apt/lists/* + # Set environment variables ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 diff --git a/requirements.txt b/requirements.txt index 9caf7f6..98152a8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,5 +4,4 @@ requests fastapi pathlib uvicorn -jinja2 -ffmpeg \ No newline at end of file +jinja2 \ No newline at end of file