FROM docker.shemic.com/dev/python:latest MAINTAINER Rabin "https://github.com/shemic" RUN pip install flask && \ pip install flask-sqlalchemy EXPOSE 5000 COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] CMD ["python-web"]