Skip to content

Commit

Permalink
add sqlite vss
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-XT committed Jan 14, 2025
1 parent 2cfe266 commit 01ffd68
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ RUN wget https://www.sqlite.org/2023/sqlite-autoconf-3420000.tar.gz && \
cd .. && \
rm -rf sqlite*

# Install sqlite-vss
RUN wget https://github.com/asg017/sqlite-vss/releases/download/v0.1.2/sqlite-vss-v0.1.2-loadable-linux-x86_64.tar.gz \
&& tar -xzvf sqlite-vss-v0.1.2-loadable-linux-x86_64.tar.gz \
&& mv vss0.so /usr/lib/sqlite-vss.so \
&& rm sqlite-vss-v0.1.2-loadable-linux-x86_64.tar.gz

# Install the larger Python dependencies
COPY static-requirements.txt .
RUN pip install -r static-requirements.txt
Expand Down

0 comments on commit 01ffd68

Please sign in to comment.