Initial commit

This commit is contained in:
2026-01-31 11:19:41 +00:00
commit 8887106656
9 changed files with 1602 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM python:3.14-slim
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
EXPOSE 5000
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "app:app", "--log-level", "warning"]