From 6df9d14374270b95f0f7e6be182b341ea202628a Mon Sep 17 00:00:00 2001 From: falkzoll Date: Wed, 18 Oct 2023 11:57:29 +0200 Subject: [PATCH] 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