Daily automatic update

This commit is contained in:
CloudNativePG Automated Updates
2025-05-19 00:18:37 +00:00
parent 8c598b2996
commit d197c7bcdb
30 changed files with 580 additions and 530 deletions

View File

@@ -20,7 +20,7 @@ FROM postgres:14.18-bullseye
LABEL name="PostgreSQL Container Images" \
vendor="The CloudNativePG Contributors" \
version="${PG_VERSION}" \
release="1" \
release="2" \
summary="PostgreSQL Container images." \
description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 14.18-bullseye."
@@ -31,6 +31,11 @@ COPY requirements.txt /
# Install additional extensions
RUN set -xe; \
apt-get update; \
if apt list --upgradable 2>/dev/null | grep -q '^postgres'; then \
echo "ERROR: Upgradable postgres packages found!"; \
apt list --upgradable 2>/dev/null | grep '^postgres'; \
exit 1; \
fi; \
apt-get install -y --no-install-recommends \
"postgresql-${PG_MAJOR}-pgaudit" \
"postgresql-${PG_MAJOR}-pgvector" \