ARG PG_MAJOR=15 FROM postgres:$PG_MAJOR-bookworm RUN apt update RUN apt install -y postgresql-server-dev-$PG_MAJOR RUN apt install -y build-essential COPY . /build WORKDIR /build RUN make && make install