FROM python:3.13-alpine

WORKDIR /app

RUN pip install --no-cache-dir maxminddb>=2.0

ENV PYTHONPATH=/app/src
ENTRYPOINT ["python", "-m", "derp"]
