chore: update pgvector Docker image to official pgvector/pgvector (#9336)

chore: update pgvector image from ankane/pgvector:v0.8.1 to pgvector/pgvector:0.8.1-pg18-trixie
This commit is contained in:
Kian Jones
2026-02-05 21:51:09 -08:00
committed by Caren Thomas
parent 98fa16899b
commit 58069d760e
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
# Start with pgvector base for builder
FROM ankane/pgvector:v0.8.1 AS builder
FROM pgvector/pgvector:0.8.1-pg15 AS builder
# comment to trigger ci
# Install Python and required packages
RUN apt-get update && apt-get install -y \
@@ -39,7 +39,7 @@ COPY . .
RUN uv sync --frozen --no-dev --all-extras --python 3.11
# Runtime stage
FROM ankane/pgvector:v0.8.1 AS runtime
FROM pgvector/pgvector:0.8.1-pg15 AS runtime
# Overridable Node.js version with --build-arg NODE_VERSION
ARG NODE_VERSION=22