@@ -35,15 +35,14 @@ COPY --link scripts/build_python.sh /
3535
3636# ------------------------------------------------------------------------------
3737FROM builder-py-base AS builder-py-3_13
38- RUN /build_python.sh 3.13.5
39- # ------------------------------------------------------------------------------
40- FROM builder-py-base AS builder-py-3_13t
41- # This can't be bumped to latest until https://github.com/python/cpython/issues/135734 is resolved.
42- RUN /build_python.sh 3.13.2t
38+ RUN /build_python.sh 3.13.8
4339# ------------------------------------------------------------------------------
4440FROM builder-py-base AS builder-py-3_14
4541RUN /build_python.sh 3.14.0
4642# ------------------------------------------------------------------------------
43+ FROM builder-py-base AS builder-py-3_14t
44+ RUN /build_python.sh 3.14.0t
45+ # ------------------------------------------------------------------------------
4746FROM python:3.13-slim-bookworm AS base
4847
4948ENV PIP_DISABLE_PIP_VERSION_CHECK=1 \
@@ -59,11 +58,11 @@ RUN apt-get -y update \
5958
6059COPY --link --from=builder-nsjail /nsjail/nsjail /usr/sbin/
6160COPY --link --from=builder-py-3_13 /snekbin/ /snekbin/
62- COPY --link --from=builder-py-3_13t /snekbin/ /snekbin/
6361COPY --link --from=builder-py-3_14 /snekbin/ /snekbin/
62+ COPY --link --from=builder-py-3_14t /snekbin/ /snekbin/
6463
6564RUN chmod +x /usr/sbin/nsjail \
66- && ln -s /snekbin/python/3.13 / /snekbin/python/default
65+ && ln -s /snekbin/python/3.14 / /snekbin/python/default
6766
6867# ------------------------------------------------------------------------------
6968FROM base AS venv
0 commit comments