File size: 378 Bytes
924b70f
d1f13ff
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
# Python API only — source mounted at runtime for uvicorn --reload (see docker-compose.yml)
FROM python:3.12-slim-bookworm
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg \
    && rm -rf /var/lib/apt/lists/*
WORKDIR /app/backend
COPY backend/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
ENV PYTHONPATH=/app/backend
EXPOSE 8000