MonitoraggioTenant/Dockerfile
2025-07-01 17:00:00 +02:00

12 lines
186 B
Docker

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