usearch 0.6.0

Smaller & Faster Single-File Vector Search Engine from Unum
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# syntax=docker/dockerfile:1

FROM ubuntu:23.04
RUN apt-get update && \
    apt-get install -y --no-install-recommends python3.11 python3-pip && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/*
RUN pip3 install --no-cache-dir --break-system-packages ucall usearch

WORKDIR /usearch
COPY python/usearch/server.py server.py

CMD ["python3", "./server.py"]
EXPOSE 8545