Files
EVS-Embedded-Voice-System/bridge/Dockerfile
2026-02-13 10:07:11 +01:00

11 lines
153 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
CMD ["python", "app.py"]