Version 1.2.2: Verbesserte Telefonnummern-Formatierung und Dokumentation

This commit is contained in:
2025-03-18 13:47:41 +01:00
parent 68a2db28a1
commit d5954eac89
6 changed files with 125 additions and 57 deletions

View File

@@ -10,8 +10,12 @@ COPY requirements.txt .
# Installiere Abhängigkeiten
RUN pip install --no-cache-dir -r requirements.txt
# Kopiere den Anwendungscode
COPY . .
# Erstelle das data Verzeichnis und setze Berechtigungen
RUN mkdir -p /app/data && \
chmod 755 /app/data
# Kopiere die Anwendungsdateien
COPY . /app/
# Exponiere Port 5000
EXPOSE 5000