Skip to content
Open
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
6 changes: 3 additions & 3 deletions python/Dockerfile.full
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ ARG UV_VERSION=0.11.15
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv-bin

### STAGE 2: base os + sandbox runtime
# node:20-bookworm-slim is a digest-pinnable debian-bookworm base that ships Node 20 (the
# node:24-bookworm-slim is a digest-pinnable debian-bookworm base that ships Node 24 (the
# sandbox-runtime requires node >= 20; debian's own nodejs package is still on 18).
# Digest = multi-arch index resolved via `docker buildx imagetools inspect node:20-bookworm-slim`.
FROM node:26-bookworm-slim@sha256:e999d087492c7227c85adc70574cf9d3cce774c3e6d7b8dfe473ee6b142c8f2c AS python-os
# Digest = multi-arch index resolved via `docker buildx imagetools inspect node:24-bookworm-slim`.
FROM node:24-bookworm-slim@sha256:6f7b03f7c2c8e2e784dcf9295400527b9b1270fd37b7e9a7285cf83b6951452d AS python-os
ARG TOOLS_PYTHON_VERSION=3.13

ENV LANG=C.UTF-8
Expand Down
Loading