16 lines
339 B
Docker
16 lines
339 B
Docker
# 1. Python-Image verwenden
|
||
FROM python:3.11-slim
|
||
|
||
# 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
|
||
CMD ["python", "app.py"]
|