From 6403d129243f49f816cccc726b495f57be956d8b Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Wed, 22 Jan 2025 08:25:55 +0530 Subject: [PATCH] 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