feat: add PostgreSQL 17beta1 images (#107)

Adding documentation on the project's structure and on how to add a new Postgres Beta version.

Signed-off-by: Gabriele Bartolini <gabriele.bartolini@enterprisedb.com>
Signed-off-by: Niccolò Fei <niccolo.fei@enterprisedb.com>
Co-authored-by: Niccolò Fei <niccolo.fei@enterprisedb.com>
This commit is contained in:
Gabriele Bartolini
2024-06-05 13:28:33 +02:00
committed by GitHub
parent b596df6e80
commit 58becf0bd9
9 changed files with 1272 additions and 2 deletions

View File

@@ -24,6 +24,8 @@ LABEL name="PostgreSQL Container Images" \
summary="PostgreSQL Container images." \
description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres %%POSTGRES_IMAGE_VERSION%%."
LABEL org.opencontainers.image.description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres %%POSTGRES_IMAGE_VERSION%%."
COPY requirements.txt /
# Install additional extensions
@@ -31,7 +33,6 @@ RUN set -xe; \
apt-get update; \
apt-get install -y --no-install-recommends \
"postgresql-${PG_MAJOR}-pgvector" \
"postgresql-${PG_MAJOR}-pgaudit" \
; \
rm -fr /tmp/* ; \
rm -rf /var/lib/apt/lists/*;