From b508b8e4b2affa23ed9085ca81ade38f807ae40d Mon Sep 17 00:00:00 2001 From: Daniel Chalef <131175+danielchalef@users.noreply.github.com> Date: Wed, 27 Sep 2023 10:09:05 -0700 Subject: [PATCH] upgrade pg154; pgvector 0.5 (#204) --- .github/workflows/docker-postgres-build.yml | 2 +- Dockerfile.postgres | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-postgres-build.yml b/.github/workflows/docker-postgres-build.yml index a07f2114..da34737d 100644 --- a/.github/workflows/docker-postgres-build.yml +++ b/.github/workflows/docker-postgres-build.yml @@ -66,7 +66,7 @@ jobs: flavor: | latest=true tags: | - type=raw,value=postgres:15.2-bullseye-pgvector + type=raw,value=postgres:15 # Build and push Docker image with Buildx (don't push on PR) # https://github.com/docker/build-push-action diff --git a/Dockerfile.postgres b/Dockerfile.postgres index b6965c57..b9b036db 100644 --- a/Dockerfile.postgres +++ b/Dockerfile.postgres @@ -1,7 +1,6 @@ -# SOURCE: https://community.fly.io/t/adding-pgvector-to-fly-postgres/12202 -FROM postgres:15.2-bullseye +FROM postgres:15.4-bullseye # Set the pgvector version -ARG PGVECTOR_VERSION=0.4.1 +ARG PGVECTOR_VERSION=0.5.0 # Install build dependencies RUN apt-get update && \