forked from deepset-ai/haystack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile-GPU
39 lines (26 loc) · 1.08 KB
/
Dockerfile-GPU
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
FROM nvidia/cuda:10.1-runtime
WORKDIR /home/user
RUN apt-get update && apt-get install -y python3.7 python3.7-dev python3.7-distutils python3-pip curl git pkg-config cmake
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
# Set default Python version
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 1
RUN update-alternatives --set python3 /usr/bin/python3.7
# copy code
COPY haystack /home/user/haystack
# install as a package
COPY setup.py requirements.txt README.md /home/user/
RUN pip3 install numpy scipy Cython
RUN pip3 install -r requirements.txt
RUN pip3 install -e .
# copy saved models
COPY README.md models* /home/user/models/
# Copy REST API code
COPY rest_api /home/user/rest_api
# optional : copy sqlite db if needed for testing
#COPY qa.db /home/user/
# optional: copy data directory containing docs for ingestion
#COPY data /home/user/data
EXPOSE 8000
# cmd for running the API (note: "--preload" is not working with cuda)
CMD ["gunicorn", "rest_api.application:app", "-b", "0.0.0.0", "-k", "uvicorn.workers.UvicornWorker", "--workers", "1", "--timeout", "180"]