ops: add Docker setup with Dockerfile and compose configuration

This commit is contained in:
2026-01-23 12:11:01 +01:00
parent acfcfb0a64
commit 4d1f706e6d
3 changed files with 33 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.13-slim
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY monitor.py .
CMD ["python", "main.py"]