This commit is contained in:
@@ -29,9 +29,9 @@ jobs:
|
|||||||
linux/arm64
|
linux/arm64
|
||||||
tags: |
|
tags: |
|
||||||
"gitea.woggioni.net/woggioni/pgvector:latest"
|
"gitea.woggioni.net/woggioni/pgvector:latest"
|
||||||
"gitea.woggioni.net/woggioni/pgvector:0.8.2-pg18.3-alpine3.23"
|
"gitea.woggioni.net/woggioni/pgvector:0.8.5-pg18.4-alpine3.24"
|
||||||
build-args: |
|
build-args: |
|
||||||
PG_VERSION=18.3
|
PG_VERSION=18.4
|
||||||
ALPINE_VERSION=3.23
|
ALPINE_VERSION=3.24
|
||||||
PGVECTOR_VERSION=0.8.2
|
PGVECTOR_VERSION=0.8.5
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -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
|
FROM postgres:${PG_VERSION}-alpine${ALPINE_VERSION} AS build
|
||||||
|
|
||||||
ARG PGVECTOR_VERSION
|
ARG PGVECTOR_VERSION
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
RUN apk update
|
RUN apk update
|
||||||
RUN apk add gcc make musl-dev clang19 llvm19 git
|
RUN apk add gcc make musl-dev clang21 llvm21 git
|
||||||
RUN git clone --branch v${PGVECTOR_VERSION} https://github.com/pgvector/pgvector.git pgvector
|
RUN git clone --branch v${PGVECTOR_VERSION} https://github.com/pgvector/pgvector.git pgvector
|
||||||
WORKDIR pgvector
|
WORKDIR pgvector
|
||||||
RUN make
|
RUN make
|
||||||
|
|||||||
Reference in New Issue
Block a user