Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion core/actionProxy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down