We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cc6292 commit 5c4c1f5Copy full SHA for 5c4c1f5
1 file changed
docker/Dockerfile.postgres
@@ -1,2 +1,8 @@
1
-FROM postgres:16.12-bookworm
+FROM postgres:16.14-bookworm
2
+
3
+# Update gnutls to pick up debian security fixes flagged by trivy (may not be needed after base image update)
4
+RUN apt-get update \
5
+ && apt-get install --no-install-recommends -y --only-upgrade libgnutls30 \
6
+ && rm -rf /var/lib/apt/lists/*
7
8
COPY deployment/postgres-init-db /docker-entrypoint-initdb.d
0 commit comments