FROM python:3.13-slim

WORKDIR /app

COPY pyproject.toml .
COPY src/ src/

RUN pip install --no-cache-dir .

COPY plugins/ plugins/
COPY config/derp.toml.example config/derp.toml.example

ENTRYPOINT ["derp"]
