support docker
This commit is contained in:
parent
497d222813
commit
6c7862ba42
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
FROM python:3.7-alpine
|
||||||
|
|
||||||
|
COPY requirements.txt /app/requirements.txt
|
||||||
|
WORKDIR /app
|
||||||
|
RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
|
||||||
|
COPY . /app
|
||||||
|
|
||||||
|
# ENTRYPOINT ["sh"]
|
||||||
|
# CMD ["go.sh"]
|
5
coc.py
5
coc.py
@ -79,6 +79,5 @@ def miss(e):
|
|||||||
return redirect('/api')
|
return redirect('/api')
|
||||||
|
|
||||||
# 本地运行启动
|
# 本地运行启动
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
app.debug = True
|
app.run(host="0.0.0.0", debug=True, port="80")
|
||||||
app.run()
|
|
3
go.sh
Normal file
3
go.sh
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
echo start
|
||||||
|
gunicorn coc:app -c gunicorn.conf.py
|
@ -2,7 +2,7 @@
|
|||||||
workers = 4
|
workers = 4
|
||||||
# 监听内网端口5000【按需要更改】
|
# 监听内网端口5000【按需要更改】
|
||||||
# coc
|
# coc
|
||||||
bind = '127.0.0.1:5003'
|
bind = '0.0.0.0:80'
|
||||||
# beta
|
# beta
|
||||||
# bind = '127.0.0.1:5005'
|
# bind = '127.0.0.1:5005'
|
||||||
# 设置守护进程【关闭连接时,程序仍在运行】
|
# 设置守护进程【关闭连接时,程序仍在运行】
|
||||||
|
@ -6,7 +6,7 @@ setting = 'development'
|
|||||||
|
|
||||||
# 获取数据集
|
# 获取数据集
|
||||||
def col(arg):
|
def col(arg):
|
||||||
conn = MongoClient('mongodb://coc:qlSfefSor5@localhost:12236/coc')
|
conn = MongoClient('mongodb://coc:qlSfefSor5@mongo:27017/coc')
|
||||||
if setting == 'development':
|
if setting == 'development':
|
||||||
arg += '_test'
|
arg += '_test'
|
||||||
if arg == 'lost':
|
if arg == 'lost':
|
||||||
|
18
requirements.txt
Normal file
18
requirements.txt
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
beautifulsoup4==4.8.2
|
||||||
|
bs4==0.0.1
|
||||||
|
certifi==2019.11.28
|
||||||
|
chardet==3.0.4
|
||||||
|
Click==7.0
|
||||||
|
Flask==1.1.1
|
||||||
|
Flask-Cors==3.0.8
|
||||||
|
gunicorn==20.0.4
|
||||||
|
idna==2.8
|
||||||
|
itsdangerous==1.1.0
|
||||||
|
Jinja2==2.10.3
|
||||||
|
MarkupSafe==1.1.1
|
||||||
|
pymongo==3.10.1
|
||||||
|
requests==2.22.0
|
||||||
|
six==1.14.0
|
||||||
|
soupsieve==1.9.5
|
||||||
|
urllib3==1.25.7
|
||||||
|
Werkzeug==0.16.0
|
Loading…
x
Reference in New Issue
Block a user