docs: update TS Worker Docker images from EOL Debian bullseye to bookworm - #5295
docs: update TS Worker Docker images from EOL Debian bullseye to bookworm#5295thiagojv wants to merge 1 commit into
Conversation
|
@thiagojv is attempting to deploy a commit to the Temporal Team on Vercel. A member of the Team first needs to authorize it. |
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
|
Thanks for this — clean, well-scoped fix. Review notes:
Worth considering (not a blocker): Debian 13 ( One more thing: the CLA check above is still showing as not signed — could you sign the Contributor License Agreement? We won't be able to merge until that's done. |
|
Thanks a lot for the thorough review, @Duncanma — really appreciate it! Good call on Also, the CLA is signed now — the |
Summary
Update the TypeScript SDK Worker Docker guide to stop recommending Debian
bullseye-based images and usebookworminstead.Changes in
docs/develop/typescript/workers/run-process.mdx:node:20-bullseye->node:20-bookwormnode:20-bullseye-slim->node:20-bookworm-slimgcr.io/distroless/nodejs20-debian11->gcr.io/distroless/nodejs20-debian12Why
Debian 11 (
bullseye) has reached end-of-life for standard support, so the docs should point readers at a currently supported base image. Debian 12 (bookworm) is the current stable release. Thenode:20-bookworm,node:20-bookworm-slim, andgcr.io/distroless/nodejs20-debian12tags are official, published, and drop-in replacements, so the surrounding guidance (glibc requirement,ca-certificateson slim images, distroless multi-stage build) stays accurate.Testing
bullseye/debian11references remain in the file.Risks
Low. The guidance and Dockerfile structure are unchanged; only the base image tags are updated to their supported equivalents.