2997119c24
HTTP service reachability checks for 12 services + agent watchdog. Writes status dashboard to /opt/sites/varys/ and last-run.json for Citadel. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
164 B
Docker
7 lines
164 B
Docker
FROM python:3.12-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY main.py config.yaml ./
|
|
CMD ["python", "main.py"]
|