16 lines
217 B
Markdown
16 lines
217 B
Markdown
# Simple Python Flask Dockerized Application
|
|
|
|
## 运行要求
|
|
|
|
- Python 3.6 及以上版本
|
|
- 默认监听5000端口
|
|
|
|
## 运行方式
|
|
|
|
```bash
|
|
# 安装依赖
|
|
pip install -r requirements.txt
|
|
# 运行
|
|
python app.py
|
|
```
|