chore: bump patch version to 1.5.2, add monitor container

This commit is contained in:
2026-05-03 16:03:49 +02:00
parent 6d8ff752f5
commit 7deccea768
8 changed files with 302 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
# syntax=docker/dockerfile:1
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir certifi
# Script vom Projekt-Root kopieren
COPY check_wetterserver.py .
# Alle 5 Minuten ausführen (SIGTERM-sicher durch wait im Hintergrund)
CMD ["sh", "-c", "while true; do python check_wetterserver.py; sleep 300 & wait $!; done"]