Skip to content

Commit 86c0a70

Browse files
committed
builds
1 parent f7158b6 commit 86c0a70

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Lean PostgreSQL image with pgvector, PostGIS, and pg_textsearch
22
# Multi-stage build - all toolchains discarded, only artifacts kept
33

4-
ARG PG_VERSION=17
5-
ARG PGVECTOR_VERSION=0.8.0
6-
ARG POSTGIS_VERSION=3.5.1
4+
ARG PG_VERSION=18
5+
ARG PGVECTOR_VERSION=0.8.2
6+
ARG POSTGIS_VERSION=3.6.2
77
ARG PG_TEXTSEARCH_VERSION=0.6.0
88

99
#############################################
@@ -82,4 +82,4 @@ COPY --from=builder /usr/local/share/postgresql/ /usr/local/share/postgresql/
8282
RUN echo "shared_preload_libraries = 'pg_textsearch'" >> /usr/local/share/postgresql/postgresql.conf.sample
8383

8484
LABEL org.opencontainers.image.source="https://github.com/constructive-io/docker"
85-
LABEL org.opencontainers.image.description="PostgreSQL 17 with pgvector, PostGIS, and pg_textsearch"
85+
LABEL org.opencontainers.image.description="PostgreSQL 18 with pgvector, PostGIS, and pg_textsearch"

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ test: build
3939
CREATE EXTENSION vector; \
4040
CREATE EXTENSION postgis; \
4141
CREATE EXTENSION pg_textsearch; \
42-
CREATE EXTENSION pgsodium; \
4342
SELECT 'all extensions OK';"
4443
@docker stop $(CONTAINER_NAME)-test > /dev/null
4544
@docker rm $(CONTAINER_NAME)-test > /dev/null

0 commit comments

Comments
 (0)