Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions postgres.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ FROM postgres:15-alpine
RUN apk add --no-cache \
git \
build-base \
clang \
llvm \
clang19 \
llvm19 \
postgresql-dev

# Clone and build pgvector
Expand All @@ -15,7 +15,7 @@ RUN git clone --branch v0.5.1 https://github.com/pgvector/pgvector.git \
&& make install

# Cleanup
RUN apk del git build-base clang llvm postgresql-dev \
RUN apk del git build-base clang19 llvm19 postgresql-dev \
&& rm -rf /pgvector

# Copy data dump
Expand Down