seed repo scaffold

This commit is contained in:
timmy 2026-07-08 19:27:11 +00:00
parent ff97b516f8
commit 3db525d8fe

View File

@ -0,0 +1,10 @@
FROM python:3.11-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg git && rm -rf /var/lib/apt/lists/*
WORKDIR /app
# CPU fallback avatar path: pre-render + stream low-fps frames
RUN pip install --no-cache-dir opencv-python-headless numpy
COPY services/avatar-cpu/server.py /app/server.py
VOLUME ["/app/reference"]
EXPOSE 5003
CMD ["python", "server.py"]