Update postgres version to 15.6

This commit is contained in:
DataHoarder 2024-02-22 17:15:39 +01:00
parent 4de201775d
commit 300ebf2249
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk

View file

@ -1,11 +1,11 @@
FROM postgres:15.3
FROM postgres:15.6
RUN apt-get update \
&& apt-get install -y --no-install-recommends git ca-certificates make gcc postgresql-server-dev-$PG_MAJOR=$PG_VERSION \
&& rm -rf /var/lib/apt/lists/*
RUN git clone --branch v1.5.1 --depth 1 https://github.com/sraoss/pg_ivm.git /usr/src/pg_ivm \
RUN git clone --branch v1.7 --depth 1 https://github.com/sraoss/pg_ivm.git /usr/src/pg_ivm \
&& cd /usr/src/pg_ivm \
&& make install \
&& cd / \