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-python.git
The following commit(s) were added to refs/heads/master by this push:
new b5b65de Update python:3.11 and python:3.10 to debian bookworm. (#146)
b5b65de is described below
commit b5b65ded35f7a2739d9af29d563275b3bcb1a48b
Author: falkzoll <[email protected]>
AuthorDate: Thu Aug 31 17:19:23 2023 +0200
Update python:3.11 and python:3.10 to debian bookworm. (#146)
- The Buster versions are in the final support phase and the vulnerability
updates are more and more delayed.
---
core/CHANGELOG.md | 4 ++++
core/python310Action/Dockerfile | 2 +-
core/python311Action/Dockerfile | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md
index 222c0fa..0145a55 100644
--- a/core/CHANGELOG.md
+++ b/core/CHANGELOG.md
@@ -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)
diff --git a/core/python310Action/Dockerfile b/core/python310Action/Dockerfile
index 7b52a10..931dfcf 100644
--- a/core/python310Action/Dockerfile
+++ b/core/python310Action/Dockerfile
@@ -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
diff --git a/core/python311Action/Dockerfile b/core/python311Action/Dockerfile
index 09e14d7..9451b6b 100644
--- a/core/python311Action/Dockerfile
+++ b/core/python311Action/Dockerfile
@@ -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