Skip to content

Commit

Permalink
Update vearch Dockerfile: pin vearch version to 3.2.8.3 in Dockerfile (
Browse files Browse the repository at this point in the history
…#485)

This commit addresses potential compatibility issues by explicitly specifying the version of the vearch library as 3.2.8.3 in the Dockerfile. Without version pinning, the lack of a specified version could lead to interface incompatibilities with future updates. By specifying the version, we ensure a stable and known state of the vearch library, reducing the risk of unexpected errors due to incompatible changes in future releases.
  • Loading branch information
cococo2000 authored Jan 10, 2024
1 parent b8cdbdf commit b64fcb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ann_benchmarks/algorithms/vearch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ann-benchmarks

RUN pip3 install vearch
RUN pip3 install vearch==3.2.8.3
RUN python3 -c 'import vearch'

0 comments on commit b64fcb9

Please sign in to comment.