First commit

This commit is contained in:
rxf
2026-02-06 19:04:26 +01:00
commit eb98092833
7 changed files with 392 additions and 0 deletions

13
collector/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.13-slim
WORKDIR /app
# Installiere Requirements
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Kopiere Collector Code
COPY main.py .
# Starte Collector
CMD ["python", "main.py"]