postgresql-containers/base/Dockerfile
2025-05-07 18:41:17 -04:00

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}