chore: bump pgvector container (#9271)

This commit is contained in:
Kian Jones
2026-02-03 17:42:17 -08:00
committed by Caren Thomas
parent 00b36bc591
commit b89387bf38
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.5.1 AS builder
FROM ankane/pgvector:v0.8.1 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.5.1 AS runtime
FROM ankane/pgvector:v0.8.1 AS runtime
# Overridable Node.js version with --build-arg NODE_VERSION
ARG NODE_VERSION=22