2019-11-14 11:42:51 +01:00
|
|
|
FROM python:3.7.4-stretch
|
|
|
|
|
|
|
|
WORKDIR /home/user
|
|
|
|
|
2020-11-05 12:01:27 +01:00
|
|
|
RUN apt-get update && apt-get install -y curl git pkg-config cmake
|
|
|
|
|
2021-03-08 09:55:11 +01:00
|
|
|
# Install PDF converter
|
|
|
|
RUN wget --no-check-certificate https://dl.xpdfreader.com/xpdf-tools-linux-4.03.tar.gz && \
|
2021-05-31 18:01:02 +01:00
|
|
|
tar -xvf xpdf-tools-linux-4.03.tar.gz && cp xpdf-tools-linux-4.03/bin64/pdftotext /usr/local/bin
|
|
|
|
|
|
|
|
RUN apt-get install libpoppler-cpp-dev pkg-config -y --fix-missing
|
2021-03-08 09:55:11 +01:00
|
|
|
|
2021-09-01 16:42:25 +02:00
|
|
|
# Install Tesseract
|
2021-09-02 11:09:30 +02:00
|
|
|
RUN apt-get install tesseract-ocr libtesseract-dev poppler-utils -y
|
2021-09-01 16:42:25 +02:00
|
|
|
|
2020-09-29 21:12:44 +02:00
|
|
|
# copy code
|
|
|
|
COPY haystack /home/user/haystack
|
|
|
|
|
2019-11-14 11:42:51 +01:00
|
|
|
# install as a package
|
2020-11-03 10:19:18 +01:00
|
|
|
COPY setup.py requirements.txt README.md /home/user/
|
2019-11-14 11:42:51 +01:00
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
RUN pip install -e .
|
|
|
|
|
2021-10-22 16:03:33 +02:00
|
|
|
# download punkt tokenizer to be included in image
|
|
|
|
RUN python3 -c "import nltk;nltk.download('punkt', download_dir='/usr/nltk_data')"
|
|
|
|
|
|
|
|
# create folder for /file-upload API endpoint with write permissions, this might be adjusted depending on FILE_UPLOAD_PATH
|
|
|
|
RUN mkdir -p /home/user/file-upload
|
2021-10-27 17:35:34 +02:00
|
|
|
RUN chmod 777 /home/user/file-upload
|
2021-10-22 16:03:33 +02:00
|
|
|
|
2020-09-29 21:12:44 +02:00
|
|
|
# copy saved models
|
2020-11-03 10:19:18 +01:00
|
|
|
COPY README.md models* /home/user/models/
|
2020-02-28 17:49:08 +01:00
|
|
|
|
2020-09-29 21:12:44 +02:00
|
|
|
# Copy REST API code
|
|
|
|
COPY rest_api /home/user/rest_api
|
|
|
|
|
2020-07-07 16:25:36 +02:00
|
|
|
# optional : copy sqlite db if needed for testing
|
2020-02-28 17:49:08 +01:00
|
|
|
#COPY qa.db /home/user/
|
|
|
|
|
2020-09-16 18:33:23 +02:00
|
|
|
# optional: copy data directory containing docs for ingestion
|
2020-07-07 16:25:36 +02:00
|
|
|
#COPY data /home/user/data
|
|
|
|
|
2020-02-28 17:49:08 +01:00
|
|
|
EXPOSE 8000
|
2019-11-14 11:42:51 +01:00
|
|
|
|
|
|
|
# cmd for running the API
|
2021-04-12 12:46:52 +02:00
|
|
|
CMD ["gunicorn", "rest_api.application:app", "-b", "0.0.0.0", "-k", "uvicorn.workers.UvicornWorker", "--workers", "1", "--timeout", "180"]
|