This is an automated email from the ASF dual-hosted git repository.
lukeroy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-docker.git
The following commit(s) were added to refs/heads/master by this push:
new 6df9d14 Update python dependencies (to unblock build). (#102)
6df9d14 is described below
commit 6df9d14374270b95f0f7e6be182b341ea202628a
Author: falkzoll <[email protected]>
AuthorDate: Wed Oct 18 11:57:29 2023 +0200
Update python dependencies (to unblock build). (#102)
---
core/CHANGELOG.md | 4 ++++
core/actionProxy/Dockerfile | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md
index c7a22cc..9903bb4 100644
--- a/core/CHANGELOG.md
+++ b/core/CHANGELOG.md
@@ -19,6 +19,10 @@
# Apache OpenWhisk Docker Runtime Container
+## next release
+Changes:
+ - Update Python dependencies
+
## 1.15.0
- Update base python image to `python:3.11-alpine`
- Update python dependacies
diff --git a/core/actionProxy/Dockerfile b/core/actionProxy/Dockerfile
index 1090b4f..817d8f8 100644
--- a/core/actionProxy/Dockerfile
+++ b/core/actionProxy/Dockerfile
@@ -24,7 +24,7 @@ RUN apk upgrade --update \
&& update-ca-certificates \
&& apk add --no-cache --virtual .build-deps bzip2-dev g++ libc-dev \
&& pip install --upgrade pip setuptools six \
- && pip install --no-cache-dir gevent==22.10.2 flask==2.2.3 greenlet==2.0.2\
+ && pip install --no-cache-dir gevent==23.9.1 flask==3.0.0 greenlet==3.0.0\
&& apk del .build-deps
ENV FLASK_PROXY_PORT 8080