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 @@ -18,6 +18,10 @@
-->

# Python 3 OpenWhisk Runtime Container

## Next version
- Update the python:3.11 and the python:3.10 action runtimes to bookworm as buster is in the final support phase and therefore the vulnerability updates for buster are more and more delayed. (#146)

## 1.18.0
- Add Python 3.10 runtime. (#128)
- Add Python 3.11 Runtime (#140)
Expand Down
2 changes: 1 addition & 1 deletion core/python310Action/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN curl -sL \
&& cd openwhisk-runtime-go-*/main\
&& GO111MODULE=on CGO_ENABLED=0 go build -o /bin/proxy

FROM python:3.10-buster
FROM python:3.10-bookworm

# select the builder to use
ARG GO_PROXY_BUILD_FROM=release
Expand Down
2 changes: 1 addition & 1 deletion core/python311Action/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN curl -sL \
&& cd openwhisk-runtime-go-*/main\
&& GO111MODULE=on CGO_ENABLED=0 go build -o /bin/proxy

FROM python:3.11-buster
FROM python:3.11-bookworm

# select the builder to use
ARG GO_PROXY_BUILD_FROM=release
Expand Down