Skip to content

Commit 462bb69

Browse files
committed
Testing extensions
Signed-off-by: Niccolò Fei <[email protected]>
1 parent 818c776 commit 462bb69

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Dockerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -158,15 +158,14 @@ RUN set -eux ; \
158158
rm -rf /usr/src/postgresql ; \
159159
postgres --version
160160

161-
# Build PgAudit
162-
# See to https://github.com/pgaudit/pgaudit/blob/master/README.md#compile-and-install
161+
# Build pgvector
163162
RUN set -eux ; \
164-
mkdir -p /usr/src/pgaudit ; \
165-
git clone -b main --single-branch https://github.com/pgaudit/pgaudit.git /usr/src/pgaudit ; \
166-
cd /usr/src/pgaudit ; \
163+
mkdir -p /usr/src/pgvector ; \
164+
git clone -b master --single-branch https://github.com/pgvector/pgvector.git /usr/src/pgvector ; \
165+
cd /usr/src/pgvector ; \
167166
make install USE_PGXS=1 PG_CONFIG=/usr/lib/postgresql/$PG_MAJOR/bin/pg_config ; \
168167
cd / ; \
169-
rm -rf /usr/src/pgaudit
168+
rm -rf /usr/src/pgvector
170169

171170
# Purge build dependencies
172171
RUN set -xe ; \

0 commit comments

Comments
 (0)