FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates \
    && rm -rf /var/lib/apt/lists/*
COPY reflect.py .
# No deps — pure stdlib. Railway runs this on a cron schedule; it runs once and exits.
CMD ["python", "reflect.py"]
