mirror of
https://github.com/facebookresearch/faiss.git
synced 2025-06-03 21:54:02 +08:00
Summary: Pull Request resolved: https://github.com/facebookresearch/faiss/pull/1485 Test Plan: Imported from OSS Reviewed By: wickedfoo Differential Revision: D24492171 Pulled By: beauby fbshipit-source-id: 20fbcbdd50ab30e110e41b34e0c07d88432b1422
19 lines
611 B
Docker
19 lines
611 B
Docker
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
FROM nvidia/cuda:10.2-devel-ubuntu18.04
|
|
|
|
RUN apt-get update && apt-get install -y wget git libcublas-dev
|
|
|
|
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
|
|
bash Miniconda3-latest-Linux-x86_64.sh -b -p ~/miniconda3
|
|
ENV PATH="/root/miniconda3/condabin:${PATH}"
|
|
|
|
RUN conda install -y -q conda-build anaconda-client
|
|
RUN conda config --set anaconda_upload yes
|
|
|
|
COPY ./ faiss
|
|
WORKDIR /faiss/conda
|