Initial monitor service

This commit is contained in:
AppFactory Bot
2026-05-29 11:43:51 +02:00
commit 939dbb26ae
3 changed files with 22 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app ./app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "9300"]