chore: add PgAudit to PG 16 beta image (#63)

Signed-off-by: Niccolò Fei <niccolo.fei@enterprisedb.com>
This commit is contained in:
Niccolò Fei
2023-08-09 17:20:48 +02:00
committed by GitHub
parent 72964d0b1a
commit 85b510f014

View File

@@ -26,6 +26,15 @@ LABEL name="PostgreSQL Container Images" \
COPY requirements.txt /
# Install additional extensions
RUN set -xe; \
apt-get update; \
apt-get install -y --no-install-recommends \
"postgresql-${PG_MAJOR}-pgaudit" \
; \
rm -fr /tmp/* ; \
rm -rf /var/lib/apt/lists/*;
# Install barman-cloud
RUN set -xe; \
apt-get update; \