first commit

This commit is contained in:
Stefan Hacker
2026-02-12 12:10:30 +01:00
commit 272e2d6090
8 changed files with 400 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.12-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5000
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--workers", "1", "app:app"]