7 lines
219 B
Docker
7 lines
219 B
Docker
ARG PG_MAJOR_VERSION=17
|
|
ARG DEB_RELEASE=bookworm
|
|
FROM postgres:${PG_MAJOR_VERSION}-${DEB_RELEASE}
|
|
|
|
ARG PG_MAJOR_VERSION
|
|
|
|
RUN apt update && apt full-upgrade -y && apt install -y postgresql-server-dev-${PG_MAJOR_VERSION}
|