userman/Dockerfile

7 lines
110 B
Docker

FROM python:3.4.1-onbuild
EXPOSE 5000
ENV PORT 5000
CMD gunicorn -w 4 main:app -b 0.0.0.0:5000 --log-file -