diff --git a/.github/workflows/bitnami.yml b/.github/workflows/bitnami.yml index a84d4d2..8f48e8d 100644 --- a/.github/workflows/bitnami.yml +++ b/.github/workflows/bitnami.yml @@ -29,7 +29,7 @@ jobs: strategy: fail-fast: false matrix: - pg: [14, 15, 16] + pg: [13] base-image: [postgresql, postgresql-repmgr] steps: diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index e40e065..ea7fc4b 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -27,7 +27,7 @@ jobs: strategy: fail-fast: false matrix: - pg: [14, 15, 16] + pg: [13] oss: [ "", "-oss" ] steps: - uses: actions/checkout@v4 diff --git a/Dockerfile b/Dockerfile index c6f0dbe..a54f653 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,27 +33,27 @@ ARG OSS_ONLY LABEL maintainer="Timescale https://www.timescale.com" -ARG PG_VERSION -RUN set -ex; \ - apk update; \ - apk add --no-cache \ - postgresql${PG_VERSION}-plpython3 +#ARG PG_VERSION +#RUN set -ex; \ +# apk update; \ +# apk add --no-cache \ +# postgresql${PG_VERSION}-plpython3 -ARG PGVECTOR_VERSION -RUN set -ex; \ - apk update; \ - apk add --no-cache --virtual .vector-deps \ - postgresql${PG_VERSION}-dev \ - git \ - build-base \ - clang15 \ - llvm15-dev \ - llvm15; \ - git clone --branch ${PGVECTOR_VERSION} https://github.com/pgvector/pgvector.git /build/pgvector; \ - cd /build/pgvector; \ - make; \ - make install; \ - apk del .vector-deps +#ARG PGVECTOR_VERSION +#RUN set -ex; \ +# apk update; \ +# apk add --no-cache --virtual .vector-deps \ +# postgresql${PG_VERSION}-dev \ +# git \ +# build-base \ +# clang15 \ +# llvm15-dev \ +# llvm15; \ +# git clone --branch ${PGVECTOR_VERSION} https://github.com/pgvector/pgvector.git /build/pgvector; \ +# cd /build/pgvector; \ +# make; \ +# make install; \ +# apk del .vector-deps # install pgai only on pg16+ and not on 32 bit arm ARG PGAI_VERSION