fixed ffmpeg

This commit is contained in:
TylerCG 2025-04-23 23:22:50 -04:00
parent 58a9f32a7c
commit 015d5e74b2
2 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -5,4 +5,3 @@ fastapi
pathlib
uvicorn
jinja2
ffmpeg