Daily automatic update

This commit is contained in:
CloudNativePG Automated Updates
2024-12-20 00:23:06 +00:00
parent 84f873351d
commit 0048c4c3c9
37 changed files with 145 additions and 313 deletions

View File

@@ -20,7 +20,7 @@ FROM postgres:14.15-bullseye
LABEL name="PostgreSQL Container Images" \
vendor="The CloudNativePG Contributors" \
version="${PG_VERSION}" \
release="20" \
release="21" \
summary="PostgreSQL Container images." \
description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 14.15-bullseye."
@@ -43,11 +43,6 @@ RUN set -xe; \
RUN set -xe; \
apt-get update; \
apt-get install -y --no-install-recommends \
# We require build dependencies to build snappy 0.6
# on Python 3.11 or greater.
# TODO: Remove build deps once barman unpins the snappy version or
# https://github.com/EnterpriseDB/barman/issues/905 is completed
build-essential python3-dev libsnappy-dev \
python3-pip \
python3-psycopg2 \
python3-setuptools \
@@ -55,15 +50,6 @@ RUN set -xe; \
pip3 install --upgrade pip; \
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
pip3 install --no-deps -r requirements.txt; \
# We require build dependencies to build snappy 0.6
# on Python 3.11 or greater.
# TODO: Remove build deps once barman unpins the snappy version or
# https://github.com/EnterpriseDB/barman/issues/905 is completed
apt-get remove -y --purge --autoremove \
build-essential \
python3-dev \
libsnappy-dev \
; \
rm -rf /var/lib/apt/lists/*;
# Change the uid of postgres to 26