haystack/Dockerfile

27 lines
676 B
Docker
Raw Normal View History

2019-11-14 11:42:51 +01:00
FROM python:3.7.4-stretch
WORKDIR /home/user
# install as a package
COPY setup.py requirements.txt README.rst /home/user/
RUN pip install -r requirements.txt
RUN pip install -e .
# copy code
COPY haystack /home/user/haystack
COPY rest_api /home/user/rest_api
2019-11-14 11:42:51 +01:00
# copy saved FARM models
2020-07-16 15:58:49 +02:00
COPY README.rst models* /home/user/models/
2020-02-28 17:49:08 +01:00
# optional : copy sqlite db if needed for testing
2020-02-28 17:49:08 +01:00
#COPY qa.db /home/user/
# optional: copy data directory containing docs for ingestion
#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
2020-07-16 15:58:49 +02:00
CMD ["gunicorn", "rest_api.application:app", "-b", "0.0.0.0", "-k", "uvicorn.workers.UvicornWorker", "--workers", "2", "--timeout", "180"]