2022-08-03 17:59:46 +02:00
|
|
|
FROM nvidia/cuda:11.1.1-runtime-ubuntu20.04
|
2020-03-12 18:30:42 +01:00
|
|
|
|
|
|
|
WORKDIR /home/user
|
|
|
|
|
2020-09-29 21:12:44 +02:00
|
|
|
ENV LC_ALL=C.UTF-8
|
|
|
|
ENV LANG=C.UTF-8
|
|
|
|
|
2022-01-04 14:33:13 +01:00
|
|
|
# Install software dependencies
|
|
|
|
RUN apt-get update && apt-get install -y software-properties-common && \
|
|
|
|
add-apt-repository ppa:deadsnakes/ppa && \
|
2022-01-19 10:26:17 +01:00
|
|
|
apt-get install -y \
|
2022-01-04 14:33:13 +01:00
|
|
|
cmake \
|
|
|
|
curl \
|
|
|
|
git \
|
|
|
|
libpoppler-cpp-dev \
|
|
|
|
libtesseract-dev \
|
|
|
|
pkg-config \
|
|
|
|
poppler-utils \
|
|
|
|
python3-pip \
|
|
|
|
python3.7 \
|
|
|
|
python3.7-dev \
|
|
|
|
python3.7-distutils \
|
|
|
|
swig \
|
|
|
|
tesseract-ocr \
|
2022-01-19 10:26:17 +01:00
|
|
|
wget && \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
2021-05-31 18:01:02 +01:00
|
|
|
|
2022-01-06 11:13:04 +01:00
|
|
|
# Install PDF converter
|
2022-04-21 10:27:56 +02:00
|
|
|
RUN curl -s https://dl.xpdfreader.com/xpdf-tools-linux-4.04.tar.gz | tar -xvzf - -C /usr/local/bin --strip-components=2 xpdf-tools-linux-4.04/bin64/pdftotext
|
2022-01-06 11:13:04 +01:00
|
|
|
|
2022-01-04 14:33:13 +01:00
|
|
|
# Set default Python version
|
|
|
|
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 1 && \
|
|
|
|
update-alternatives --set python3 /usr/bin/python3.7
|
2020-03-12 18:30:42 +01:00
|
|
|
|
2022-01-26 18:12:55 +01:00
|
|
|
# Copy Haystack code
|
2022-02-09 17:35:18 +01:00
|
|
|
COPY haystack /home/user/haystack/
|
2022-01-26 18:12:55 +01:00
|
|
|
# Copy package files & models
|
|
|
|
COPY setup.py setup.cfg pyproject.toml VERSION.txt LICENSE README.md models* /home/user/
|
|
|
|
# Copy REST API code
|
2022-02-09 17:35:18 +01:00
|
|
|
COPY rest_api /home/user/rest_api/
|
2022-01-04 14:33:13 +01:00
|
|
|
|
|
|
|
# Install package
|
2022-02-09 17:35:18 +01:00
|
|
|
RUN pip install --upgrade pip
|
|
|
|
RUN pip install --no-cache-dir .[docstores-gpu,crawler,preprocessing,ocr,ray]
|
|
|
|
RUN pip install --no-cache-dir rest_api/
|
|
|
|
# Install PyTorch for CUDA 11
|
|
|
|
RUN pip3 install --no-cache-dir torch==1.10.1+cu111 -f https://download.pytorch.org/whl/torch_stable.html
|
2022-01-04 14:33:13 +01:00
|
|
|
|
2022-01-11 16:37:45 +01:00
|
|
|
# Cache Roberta and NLTK data
|
|
|
|
RUN python3 -c "from haystack.utils.docker import cache_models;cache_models()"
|
|
|
|
|
2022-02-09 17:35:18 +01:00
|
|
|
# create folder for /file-upload API endpoint with write permissions, this might be adjusted depending on FILE_UPLOAD_PATH
|
|
|
|
RUN mkdir -p /home/user/rest_api/file-upload
|
|
|
|
RUN chmod 777 /home/user/rest_api/file-upload
|
|
|
|
|
2020-09-29 21:12:44 +02:00
|
|
|
# optional : copy sqlite db if needed for testing
|
2020-03-12 18:30:42 +01:00
|
|
|
#COPY qa.db /home/user/
|
|
|
|
|
2020-09-29 21:12:44 +02:00
|
|
|
# optional: copy data directory containing docs for ingestion
|
2020-07-07 16:25:36 +02:00
|
|
|
#COPY data /home/user/data
|
|
|
|
|
2020-03-12 18:30:42 +01:00
|
|
|
EXPOSE 8000
|
2022-03-21 11:58:51 +01:00
|
|
|
ENV HAYSTACK_DOCKER_CONTAINER="HAYSTACK_GPU_CONTAINER"
|
2020-03-12 18:30:42 +01:00
|
|
|
|
2020-09-29 21:12:44 +02:00
|
|
|
# cmd for running the API (note: "--preload" is not working with cuda)
|
2021-09-02 11:09:30 +02:00
|
|
|
CMD ["gunicorn", "rest_api.application:app", "-b", "0.0.0.0", "-k", "uvicorn.workers.UvicornWorker", "--workers", "1", "--timeout", "180"]
|