diff --git a/postgres/Dockerfile b/postgres/Dockerfile index b115abc..9c1e409 100644 --- a/postgres/Dockerfile +++ b/postgres/Dockerfile @@ -14,7 +14,7 @@ RUN apt-get update && \ apt-get install -y wget && \ wget -nv -O /tmp/vchord.deb https://github.com/tensorchord/VectorChord/releases/download/$VECTORCHORD_TAG/postgresql-${PG_MAJOR%.*}-vchord_${VECTORCHORD_TAG#"v"}-1_${TARGETARCH}.deb && \ if [ -n "$PGVECTORS_TAG" ]; then \ - wget -nv -O /tmp/pgvectors.deb https://github.com/tensorchord/pgvecto.rs/releases/download/v$PGVECTORS_TAG/vectors-pg${PG_MAJOR%.*}_${PGVECTORS_TAG#"v"}_${TARGETARCH}$(if [ "$PGVECTORS_TAG" = '0.3.0']; then echo "_vectors"; fi).deb; \ + wget -nv -O /tmp/pgvectors.deb https://github.com/tensorchord/pgvecto.rs/releases/download/v$PGVECTORS_TAG/vectors-pg${PG_MAJOR%.*}_${PGVECTORS_TAG#"v"}_${TARGETARCH}$(if [ "$PGVECTORS_TAG" = '0.3.0' ]; then echo "_vectors"; fi).deb; \ apt-get install -y /tmp/pgvectors.deb; \ rm -f /tmp/pgvectors.deb; \ fi && \