MonitoraggioTenant/Dockerfile
2025-07-01 18:05:03 +02:00

13 lines
205 B
Docker

FROM python:3.13.3-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY watcher.py .
COPY config.yaml .
COPY templates .
CMD ["python", "-u", "watcher.py"]