updated pgvector to 0.8.5
CI / Build pgvector docker images (push) Failing after 21s

This commit is contained in:
2026-07-12 16:38:48 +08:00
parent 05862a0b0d
commit 175bd88854
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
ARG PG_VERSION=18.3 ALPINE_VERSION=3.23
ARG PG_VERSION=18.5 ALPINE_VERSION=3.24
FROM postgres:${PG_VERSION}-alpine${ALPINE_VERSION} AS build
ARG PGVECTOR_VERSION
WORKDIR /
RUN apk update
RUN apk add gcc make musl-dev clang19 llvm19 git
RUN apk add gcc make musl-dev clang22 llvm22 git
RUN git clone --branch v${PGVECTOR_VERSION} https://github.com/pgvector/pgvector.git pgvector
WORKDIR pgvector
RUN make