FROM python:3.12-slim

COPY . /var/lib/rp_reporter/
WORKDIR /var/lib/rp_reporter/

RUN apt-get update \
    && apt-get install -y --no-install-recommends git

RUN pip install --no-cache-dir .
