seed repo scaffold
This commit is contained in:
parent
3db525d8fe
commit
75e31963e1
9
services/router/Dockerfile
Normal file
9
services/router/Dockerfile
Normal 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"]
|
||||
Loading…
Reference in New Issue
Block a user