# 1. Python-Image verwenden FROM python:3.11-alpine # 2. Arbeitsverzeichnis im Container setzen WORKDIR /app # 3. requirements.txt kopieren und Pakete installieren COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # 4. Quellcode kopieren (z. B. app.py) COPY . . # 5. Flask-App starten # production-style server mit gunicorn RUN pip install gunicorn CMD ["gunicorn", "--bind", "0.0.0.0:5000", "app:app"]