From bbe66e821b6089ad7bc9e766c57018dd5197b8bf Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sat, 23 Aug 2025 19:34:11 -0700 Subject: [PATCH] Added Docker images for Debian 13 / Trixie [skip ci] --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 6fdede0..8533c5b 100644 --- a/Makefile +++ b/Makefile @@ -77,3 +77,8 @@ docker: docker-release: docker buildx build --push --pull --no-cache --platform linux/amd64,linux/arm64 --build-arg PG_MAJOR=$(PG_MAJOR) --build-arg DEBIAN_CODENAME=bookworm -t pgvector/pgvector:pg$(PG_MAJOR) -t pgvector/pgvector:pg$(PG_MAJOR)-bookworm -t pgvector/pgvector:$(EXTVERSION)-pg$(PG_MAJOR) -t pgvector/pgvector:$(EXTVERSION)-pg$(PG_MAJOR)-bookworm . + +.PHONY: docker-release-trixie + +docker-release-trixie: + docker buildx build --push --pull --no-cache --platform linux/amd64,linux/arm64 --build-arg PG_MAJOR=$(PG_MAJOR) --build-arg DEBIAN_CODENAME=trixie -t pgvector/pgvector:pg$(PG_MAJOR)-trixie -t pgvector/pgvector:$(EXTVERSION)-pg$(PG_MAJOR)-trixie .