From 86c0a7056fa33518eee9f9636f63a56c944b5dd5 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Thu, 12 Mar 2026 00:02:38 -0700 Subject: [PATCH 1/3] builds --- Dockerfile | 8 ++++---- Makefile | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index b529275..7886429 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ # Lean PostgreSQL image with pgvector, PostGIS, and pg_textsearch # Multi-stage build - all toolchains discarded, only artifacts kept -ARG PG_VERSION=17 -ARG PGVECTOR_VERSION=0.8.0 -ARG POSTGIS_VERSION=3.5.1 +ARG PG_VERSION=18 +ARG PGVECTOR_VERSION=0.8.2 +ARG POSTGIS_VERSION=3.6.2 ARG PG_TEXTSEARCH_VERSION=0.6.0 ############################################# @@ -82,4 +82,4 @@ COPY --from=builder /usr/local/share/postgresql/ /usr/local/share/postgresql/ RUN echo "shared_preload_libraries = 'pg_textsearch'" >> /usr/local/share/postgresql/postgresql.conf.sample LABEL org.opencontainers.image.source="https://github.com/constructive-io/docker" -LABEL org.opencontainers.image.description="PostgreSQL 17 with pgvector, PostGIS, and pg_textsearch" +LABEL org.opencontainers.image.description="PostgreSQL 18 with pgvector, PostGIS, and pg_textsearch" diff --git a/Makefile b/Makefile index 2d36ed8..2b399f4 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,6 @@ test: build CREATE EXTENSION vector; \ CREATE EXTENSION postgis; \ CREATE EXTENSION pg_textsearch; \ - CREATE EXTENSION pgsodium; \ SELECT 'all extensions OK';" @docker stop $(CONTAINER_NAME)-test > /dev/null @docker rm $(CONTAINER_NAME)-test > /dev/null From 768c2af7528bd7927bb924fd259ede7de3e64529 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Thu, 12 Mar 2026 13:28:40 -0700 Subject: [PATCH 2/3] update to new release --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7886429..1fe08b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG PG_VERSION=18 ARG PGVECTOR_VERSION=0.8.2 ARG POSTGIS_VERSION=3.6.2 -ARG PG_TEXTSEARCH_VERSION=0.6.0 +ARG PG_TEXTSEARCH_VERSION=0.6.1 ############################################# # Stage 1: Build extensions From 44199e501e19a9da960ee0c3801430049060b10c Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Thu, 12 Mar 2026 13:30:27 -0700 Subject: [PATCH 3/3] updates --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e3db68..91d91d1 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ constructive

-Lean PostgreSQL 17 image with essential extensions for modern applications. +Lean PostgreSQL 18 image with essential extensions for modern applications. ## Extensions