From 8bdca0219e9529360072277c7eeda1b8b7b869f9 Mon Sep 17 00:00:00 2001 From: CloudNativePG Automated Updates Date: Tue, 26 Sep 2023 14:27:05 +0000 Subject: [PATCH] Daily automatic update --- Debian/16/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Debian/16/Dockerfile b/Debian/16/Dockerfile index a0a2bfde..22aa8f4f 100644 --- a/Debian/16/Dockerfile +++ b/Debian/16/Dockerfile @@ -24,14 +24,17 @@ LABEL name="PostgreSQL Container Images" \ summary="PostgreSQL Container images." \ description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 16.0-bullseye." +LABEL org.opencontainers.image.description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 16.0-bullseye." + COPY requirements.txt / # Install additional extensions RUN set -xe; \ apt-get update; \ apt-get install -y --no-install-recommends \ - "postgresql-${PG_MAJOR}-pgvector" \ "postgresql-${PG_MAJOR}-pgaudit" \ + "postgresql-${PG_MAJOR}-pgvector" \ + "postgresql-${PG_MAJOR}-pg-failover-slots" \ ; \ rm -fr /tmp/* ; \ rm -rf /var/lib/apt/lists/*;