initialer upload des projektes

This commit is contained in:
Hacklab1-hh
2026-02-05 06:11:47 +01:00
parent 7c61208741
commit 707e8fce6e
7 changed files with 665 additions and 31 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:3.11-slim
WORKDIR /app
# Verhindert, dass Python stdout/stderr puffert
ENV PYTHONUNBUFFERED=1
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Nutzt -u für unbuffered binary stdout
CMD ["python", "-u", "syslog-fb-monitor.py"]