From b5fa06a1180acfee31b489a7ec1e4a7ac1d97959 Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Wed, 22 Jan 2025 08:24:09 +0530 Subject: [PATCH 1/3] feat: pg 14.4.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 03a90b9..5ff6fef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG PGVECTOR_TAG=v0.8.0 -ARG PG_MAJOR=14 +ARG PG_MAJOR=14.4.0-debian-11-r0 FROM bitnami/git:2.44.0 AS git From 6403d129243f49f816cccc726b495f57be956d8b Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Wed, 22 Jan 2025 08:25:55 +0530 Subject: [PATCH 2/3] chore: fix bitnami tag --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5ff6fef..490d878 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG PGVECTOR_TAG=v0.8.0 -ARG PG_MAJOR=14.4.0-debian-11-r0 +ARG PG_MAJOR=14.4.0 FROM bitnami/git:2.44.0 AS git @@ -8,7 +8,7 @@ WORKDIR /workspace RUN git clone https://github.com/pgvector/pgvector && cd pgvector && git checkout ${PGVECTOR_TAG} ARG PG_MAJOR -FROM bitnami/postgresql:${PG_MAJOR}-debian-11 +FROM bitnami/postgresql:${PG_MAJOR}-debian-11-r0 USER root COPY --from=git /workspace/pgvector /tmp/pgvector From 43329520473fff36ab132a2e3163b80430ba40a6 Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Wed, 22 Jan 2025 08:27:42 +0530 Subject: [PATCH 3/3] chore: fix pg version in build action --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index bc73032..aa7c54b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -44,7 +44,7 @@ jobs: cache-from: type=gha cache-to: type=gha,mode=max build-args: | - PG_MAJOR=14.4.0-debian-11-r0 + PG_MAJOR=14.4.0 PGVECTOR_TAG=v0.8.0 # image-dockerhub: