Update the dockerfile and upgrade dependencies
parent
4a7eb1eb6c
commit
f9e30bd87c
@ -1,53 +1,46 @@
|
|||||||
alembic==0.9.9
|
alembic==1.0.2
|
||||||
asn1crypto==0.24.0
|
asn1crypto==0.24.0
|
||||||
Babel==2.5.3
|
Babel==2.6.0
|
||||||
bcrypt==3.1.4
|
bcrypt==3.1.4
|
||||||
blinker==1.4
|
blinker==1.4
|
||||||
certifi==2018.4.16
|
|
||||||
cffi==1.11.5
|
cffi==1.11.5
|
||||||
chardet==3.0.4
|
Click==7.0
|
||||||
click==6.7
|
cryptography==2.3.1
|
||||||
cryptography==2.2.2
|
|
||||||
decorator==4.3.0
|
decorator==4.3.0
|
||||||
dnspython==1.15.0
|
dnspython==1.15.0
|
||||||
docker-py==1.10.6
|
dominate==2.3.4
|
||||||
docker-pycreds==0.2.2
|
Flask==1.0.2
|
||||||
dominate==2.3.1
|
Flask-Babel==0.12.2
|
||||||
Flask==0.12.2
|
|
||||||
Flask-Babel==0.11.2
|
|
||||||
Flask-Bootstrap==3.3.7.1
|
Flask-Bootstrap==3.3.7.1
|
||||||
Flask-DebugToolbar==0.10.1
|
Flask-DebugToolbar==0.10.1
|
||||||
Flask-Limiter==1.0.1
|
Flask-Limiter==1.0.1
|
||||||
Flask-Login==0.4.1
|
Flask-Login==0.4.1
|
||||||
Flask-Migrate==2.1.1
|
Flask-Migrate==2.3.0
|
||||||
Flask-Script==2.0.6
|
Flask-Script==2.0.6
|
||||||
Flask-SQLAlchemy==2.3.2
|
Flask-SQLAlchemy==2.3.2
|
||||||
Flask-WTF==0.14.2
|
Flask-WTF==0.14.2
|
||||||
gunicorn==19.7.1
|
gunicorn==19.9.0
|
||||||
idna==2.6
|
idna==2.7
|
||||||
infinity==1.4
|
infinity==1.4
|
||||||
intervals==0.8.1
|
intervals==0.8.1
|
||||||
itsdangerous==0.24
|
itsdangerous==1.1.0
|
||||||
Jinja2==2.10
|
Jinja2==2.10
|
||||||
limits==1.3
|
limits==1.3
|
||||||
Mako==1.0.7
|
Mako==1.0.7
|
||||||
MarkupSafe==1.0
|
MarkupSafe==1.1.0
|
||||||
passlib==1.7.1
|
passlib==1.7.1
|
||||||
pycparser==2.18
|
pycparser==2.19
|
||||||
pyOpenSSL==17.5.0
|
pyOpenSSL==18.0.0
|
||||||
python-dateutil==2.7.2
|
python-dateutil==2.7.5
|
||||||
python-editor==1.0.3
|
python-editor==1.0.3
|
||||||
pytz==2018.4
|
pytz==2018.7
|
||||||
PyYAML==3.12
|
PyYAML==3.13
|
||||||
redis==2.10.6
|
redis==2.10.6
|
||||||
requests==2.18.4
|
|
||||||
six==1.11.0
|
six==1.11.0
|
||||||
SQLAlchemy==1.2.6
|
SQLAlchemy==1.2.13
|
||||||
tabulate==0.8.2
|
tabulate==0.8.2
|
||||||
urllib3==1.22
|
validators==0.12.2
|
||||||
validators==0.12.1
|
|
||||||
visitor==0.1.3
|
visitor==0.1.3
|
||||||
websocket-client==0.47.0
|
|
||||||
Werkzeug==0.14.1
|
Werkzeug==0.14.1
|
||||||
WTForms==2.1
|
WTForms==2.2.1
|
||||||
WTForms-Components==0.10.3
|
WTForms-Components==0.10.3
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
python manage.py advertise
|
flask mailu advertise
|
||||||
python manage.py db upgrade
|
flask db upgrade
|
||||||
gunicorn -w 4 -b :80 --access-logfile - --error-logfile - --preload mailu:app
|
|
||||||
|
gunicorn -w 4 -b :80 --access-logfile - --error-logfile - --preload "$FLASK_APP:create_app()"
|
||||||
|
Loading…
Reference in New Issue