Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hunter-ji/flaskr

flask dockerfile
https://github.com/hunter-ji/flaskr

Last synced: 7 days ago
JSON representation

flask dockerfile

Awesome Lists containing this project

README

        

## kuari/myflaskr:latest

```dockerfile
FROM python

LABEL maintainer "Kuari "

RUN pip install --upgrade pip \
&& pip install redis Flask flask_restful flask_sqlalchemy flask_cors flask-cli pymysql gunicorn

WORKDIR /app

EXPOSE 80

CMD gunicorn -w 5 -b 0.0.0.0:80 server:app
```