Initial finance dashboard

This commit is contained in:
kai
2026-09-09 07:49:52 +02:00
commit 729a13bfca
6 changed files with 102 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app/ /app/
EXPOSE 8080
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]