FROM python:3.12-slim-bookworm ENV PYTHONUNBUFFERED=1 \ PIP_NO_CACHE_DIR=1 \ PORT=7860 WORKDIR /app RUN apt-get update && \ apt-get install -y ffmpeg nodejs ca-certificates && \ rm -rf /var/lib/apt/lists/* COPY . /app RUN pip install --upgrade pip && \ pip install ./humeo-core && \ pip install . EXPOSE 7860 CMD ["python", "app.py"]