2019-04-10 18:57:07 +03:00
|
|
|
FROM mozilla/bugbug-base:latest
|
|
|
|
|
|
|
|
COPY requirements.txt /code/bugbug_http_service/
|
|
|
|
|
|
|
|
RUN pip install -r /code/bugbug_http_service/requirements.txt
|
|
|
|
|
|
|
|
COPY . /code/bugbug_http_service/
|
|
|
|
|
|
|
|
# Load the models
|
|
|
|
WORKDIR /code/
|
|
|
|
|
2019-04-15 18:36:30 +03:00
|
|
|
COPY ./models /code/models
|
2019-04-10 18:57:07 +03:00
|
|
|
|
2019-04-15 18:36:30 +03:00
|
|
|
RUN python /code/bugbug_http_service/check_models.py
|
2019-04-10 18:57:07 +03:00
|
|
|
|
2019-04-12 16:26:06 +03:00
|
|
|
CMD ["gunicorn", "-b", "0.0.0.0:8000", "bugbug_http_service.app", "--preload", "--timeout", "30", "-w", "3"]
|