Skip to content

Commit ab4b2dd

Browse files
committed
Build pgai on pg18
1 parent 5d636fe commit ab4b2dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ RUN curl -Ls https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor
6767
RUN for t in deb deb-src; do \
6868
echo "$t [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/postgresql.keyring] https://apt.postgresql.org/pub/repos/apt/ $(lsb_release -s -c)-pgdg main 18" >> /etc/apt/sources.list.d/pgdg.list; \
6969
echo "$t [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/postgresql.keyring] https://apt-archive.postgresql.org/pub/repos/apt $(lsb_release -s -c)-pgdg-archive main" >> /etc/apt/sources.list.d/pgdg.list; \
70-
done
70+
done
7171

7272
# timescaledb-tune, as well as timescaledb-parallel-copy
7373
RUN curl -Ls https://packagecloud.io/timescale/timescaledb/gpgkey | gpg --dearmor --output /usr/share/keyrings/timescaledb.keyring
@@ -181,7 +181,7 @@ RUN packages=""; \
181181
postgresql-${pg}-pgvector \
182182
postgresql-${pg}-pgrouting \
183183
postgresql-${pg}-cron \
184-
postgresql-${pg}-pgaudit \
184+
postgresql-${pg}-pgaudit \
185185
postgresql-${pg}-pg-qualstats \
186186
postgresql-${pg}-pg-stat-kcache \
187187
postgresql-${pg}-pglogical \
@@ -323,7 +323,7 @@ RUN if [ -n "${PGAI_VERSION}" ]; then \
323323
git clone --branch "${PGAI_VERSION}" https://github.com/timescale/pgai.git /build/pgai; \
324324
cd /build/pgai; \
325325
for pg in ${PG_VERSIONS}; do \
326-
[[ "$pg" -lt 16 || "$pg" -gt 17 ]] && continue; \
326+
[[ "$pg" -lt 16 ]] && continue; \
327327
PG_BIN=$(/usr/lib/postgresql/${pg}/bin/pg_config --bindir) PG_MAJOR=${pg} ./projects/extension/build.py install all; \
328328
done; \
329329
fi

0 commit comments

Comments
 (0)