support docker

This commit is contained in:
RainSun 2020-04-04 08:46:45 +08:00
parent 497d222813
commit 6c7862ba42
7 changed files with 45 additions and 5 deletions

9
Dockerfile Normal file
View 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
View File

@ -79,6 +79,5 @@ def miss(e):
return redirect('/api')
# 本地运行启动
if __name__ == '__main__':
app.debug = True
app.run()
if __name__ == '__main__':
app.run(host="0.0.0.0", debug=True, port="80")

3
go.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
echo start
gunicorn coc:app -c gunicorn.conf.py

View File

@ -2,7 +2,7 @@
workers = 4
# 监听内网端口5000【按需要更改】
# coc
bind = '127.0.0.1:5003'
bind = '0.0.0.0:80'
# beta
# bind = '127.0.0.1:5005'
# 设置守护进程【关闭连接时,程序仍在运行】

View File

@ -6,7 +6,7 @@ setting = 'development'
# 获取数据集
def col(arg):
conn = MongoClient('mongodb://coc:qlSfefSor5@localhost:12236/coc')
conn = MongoClient('mongodb://coc:qlSfefSor5@mongo:27017/coc')
if setting == 'development':
arg += '_test'
if arg == 'lost':

18
requirements.txt Normal file
View 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

11
test,py Normal file
View File

@ -0,0 +1,11 @@
import math
a = math.pow(12.09, 2)
print(a)
b = a / 10
print(b)
c = 3330.97 - b
print(c)
d = math.sqrt(c)
print(d)
e = d / 9
print(e)