# Testbed image: stock postgres:17 plus HypoPG (needed from M2 for
# hypothetical-index simulation). The postgres image ships the PGDG apt repo,
# so the extension package is one install away.
FROM postgres:17

RUN apt-get update \
    && apt-get install -y --no-install-recommends postgresql-17-hypopg \
    && rm -rf /var/lib/apt/lists/*
