4
0
This repository has been archived on 2020-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
classification-service/Dockerfile
marcsello fd83e268ef
All checks were successful
continuous-integration/drone/push Build is passing
Initial commit
2020-04-15 00:33:06 +02:00

10 lines
243 B
Docker

FROM python:3
ADD classification_service requirements.txt /classification_service/
WORKDIR /classification_service/
RUN pip3 install -r requirements.txt && pip3 install gunicorn
EXPOSE 8000
CMD ["gunicorn", "-b", "0.0.0.0:8000", "app:app"]