Daily automatic update

This commit is contained in:
CloudNativePG Automated Updates
2023-09-26 14:27:05 +00:00
parent d91ab4a156
commit 8bdca0219e

View File

@@ -24,14 +24,17 @@ LABEL name="PostgreSQL Container Images" \
summary="PostgreSQL Container images." \ summary="PostgreSQL Container images." \
description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 16.0-bullseye." 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 / COPY requirements.txt /
# Install additional extensions # Install additional extensions
RUN set -xe; \ RUN set -xe; \
apt-get update; \ apt-get update; \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
"postgresql-${PG_MAJOR}-pgvector" \
"postgresql-${PG_MAJOR}-pgaudit" \ "postgresql-${PG_MAJOR}-pgaudit" \
"postgresql-${PG_MAJOR}-pgvector" \
"postgresql-${PG_MAJOR}-pg-failover-slots" \
; \ ; \
rm -fr /tmp/* ; \ rm -fr /tmp/* ; \
rm -rf /var/lib/apt/lists/*; rm -rf /var/lib/apt/lists/*;