feat: add worker loop and production Dockerfiles

This commit is contained in:
Jonathan
2026-07-10 17:16:24 +02:00
parent d441d0561f
commit 3e44de093e
7 changed files with 67 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY lyra_worker ./lyra_worker
CMD ["python", "-m", "lyra_worker.main"]