Skip to content

Commit 8b2e205

Browse files
authored
Merge pull request #62 from csantanapr/update_flask_deps
Update gevent and flask python dependencies
2 parents c356da2 + 47d2efd commit 8b2e205

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

core/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
Changes:
2424
- Update base python image to `python:3.6-alpine`
2525
- Update current directory for action to be root of zip
26+
- Update python dependencies gevent(`1.2.1`->`1.3.6`) and flask(`0.12`->`1.0.2`)
2627

2728
## 1.3.3 (Apache 1.12.0)
2829
Changes:

core/actionProxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN apk upgrade --update \
2424
&& update-ca-certificates \
2525
&& apk add --no-cache --virtual .build-deps bzip2-dev gcc libc-dev \
2626
&& pip install --upgrade pip setuptools six \
27-
&& pip install --no-cache-dir gevent==1.2.1 flask==0.12 \
27+
&& pip install --no-cache-dir gevent==1.3.6 flask==1.0.2 \
2828
&& apk del .build-deps
2929

3030
ENV FLASK_PROXY_PORT 8080

core/actionProxy/actionproxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import subprocess
3434
import codecs
3535
import flask
36-
from gevent.wsgi import WSGIServer
36+
from gevent.pywsgi import WSGIServer
3737
import zipfile
3838
import io
3939
import base64

0 commit comments

Comments
 (0)