mirror of
https://github.com/YuzuZensai/cloudnative-vectorchord-pgvecto.rs.git
synced 2026-01-06 04:33:02 +00:00
* fix: pgvecto.rs install package got renamed * chore: Underscores * feat: Fail build if deb download returns 404 * chore: pgvecto.rs no longer versions with v prefix * Revert "chore: pgvecto.rs no longer versions with v prefix" This reverts commit a883c0de09ab439bbee45d9861e93416971427ae. * chore: Strip v prefix from pgvectors tag * chore: Use buildx TARGETARCH variable * fix: TARGETARCH arg needs to be specified
26 lines
792 B
Docker
26 lines
792 B
Docker
ARG CNPG_TAG
|
|
|
|
FROM curlimages/curl AS download
|
|
|
|
ARG CNPG_TAG
|
|
ARG PGVECTORS_TAG
|
|
ARG TARGETARCH
|
|
|
|
WORKDIR /download
|
|
RUN pg_major=$(echo $CNPG_TAG | cut -d'.' -f1) \
|
|
&& curl --fail -o pgvectors.deb -sSL https://github.com/tensorchord/pgvecto.rs/releases/download/$PGVECTORS_TAG/vectors-pg${pg_major}_${PGVECTORS_TAG#"v"}_$TARGETARCH.deb
|
|
|
|
FROM ghcr.io/cloudnative-pg/postgresql:$CNPG_TAG
|
|
|
|
# drop to root to install packages
|
|
USER root
|
|
COPY --from=download /download/pgvectors.deb ./pgvectors.deb
|
|
RUN apt install ./pgvectors.deb
|
|
|
|
USER postgres
|
|
|
|
# From https://stackoverflow.com/a/42508925
|
|
# Note that this way of enabling the plugin only works on database init
|
|
# We should investigate alternative ways of enabling it that will always work
|
|
COPY install-pgvectors.sql /docker-entrypoint-initdb.d/
|