🔧 FIX: Git in Dockerfile installiert + Token-Auto-Erhaltung für /subscribe
docker-build-and-push / build (push) Successful in 1m45s

This commit is contained in:
KI-Sparringpartner
2026-08-03 15:07:49 +02:00
parent 26429bac86
commit 73ac218b7b
2 changed files with 7 additions and 3 deletions
+3
View File
@@ -3,6 +3,9 @@ FROM python:3.12-slim
WORKDIR /app
# Git und System-Tools installieren (ESSENTIUELL!)
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
# Abhängigkeiten installieren
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt