seed repo scaffold

This commit is contained in:
timmy 2026-07-08 19:27:12 +00:00
parent 3db525d8fe
commit 75e31963e1

View File

@ -0,0 +1,9 @@
FROM python:3.11-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg curl && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY services/router/server.py /app/server.py
COPY persona.yaml /app/persona.yaml
VOLUME ["/app/persona"]
EXPOSE 8787 5555/udp
CMD ["python", "server.py"]