updated pgvector to 0.8.1

This commit is contained in:
2025-11-08 13:45:09 +08:00
parent 89fd216f14
commit a2ef447bc3
2 changed files with 5 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ FROM postgres:${PG_VERSION}-alpine AS build
WORKDIR /
RUN apk update
RUN apk add gcc make musl-dev clang19 llvm19 git
RUN git clone --branch v0.8.0 https://github.com/pgvector/pgvector.git pgvector
RUN git clone --branch v${PGVECTOR_VERSION} https://github.com/pgvector/pgvector.git pgvector
WORKDIR pgvector
RUN make
RUN make install