Docker-Support und README-Anleitung ergänzt

This commit is contained in:
2025-06-26 11:26:42 +02:00
parent 11e756bb3f
commit 741eb4b477
2 changed files with 25 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
# Dockerfile für TI-Status2Mattermost
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "ti_status_checker.py"]