feat: Dockerfiles for pipeline, api, and cron containers

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-28 10:52:39 -05:00
parent 2cc256ed6e
commit cb7896a103
3 changed files with 47 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:3.12-slim
WORKDIR /app
COPY pyproject.toml .
RUN pip install --no-cache-dir fastapi uvicorn[standard] pydantic-settings httpx livekit-api
COPY app/ app/
ENV PYTHONUNBUFFERED=1
CMD ["uvicorn", "app.api.main:app_factory", "--factory", "--host", "0.0.0.0", "--port", "8310"]