From 3a6b86dd908d1b0f18e54023f1f6da0c149c9f2c Mon Sep 17 00:00:00 2001 From: Alexandr Guzhva Date: Wed, 11 Sep 2024 18:07:09 -0400 Subject: [PATCH] Add a dockerfile for development Signed-off-by: Alexandr Guzhva --- faiss/cppcontrib/docker_dev/Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 faiss/cppcontrib/docker_dev/Dockerfile diff --git a/faiss/cppcontrib/docker_dev/Dockerfile b/faiss/cppcontrib/docker_dev/Dockerfile new file mode 100644 index 0000000000..a31a9e3e91 --- /dev/null +++ b/faiss/cppcontrib/docker_dev/Dockerfile @@ -0,0 +1,10 @@ +FROM ubuntu:22.04 + +RUN apt update && apt install -y python3 python3-pip gcc g++ mc git swig sudo libomp-dev libopenblas-dev wget +RUN pip3 install numpy==1.26.4 scipy pytest +RUN cd /root && git clone https://github.com/facebookresearch/faiss +RUN wget -qO- "https://cmake.org/files/v3.26/cmake-3.26.5-linux-x86_64.tar.gz" | sudo tar --strip-components=1 -xz -C /usr/local +RUN cd /root/faiss && /usr/local/bin/cmake -B build -DFAISS_ENABLE_GPU=OFF -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Release . +RUN cd /root/faiss && make -C build -j 8 faiss +RUN cd /root/faiss && make -C build -j 8 swigfaiss +RUN cd /root/faiss/build/faiss/python && python3 setup.py install