dockerfile hinzugefügt

added dockerfile
This commit is contained in:
2025-07-09 16:41:53 +02:00
parent 1345e9444e
commit 2d8b1e9da2
+10
View File
@@ -0,0 +1,10 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["gunicorn", "-b", "0.0.0.0:5000", "main:app"]