From 2588fff0013313f2204f79c40f17ca18c272da0e Mon Sep 17 00:00:00 2001 From: akarpov <86011874+alekseyolg@users.noreply.github.com> Date: Mon, 1 Sep 2025 15:53:57 +0300 Subject: [PATCH] Update base debian image to 13 (trixie) --- images/hub/Dockerfile | 4 ++-- images/singleuser-sample/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/images/hub/Dockerfile b/images/hub/Dockerfile index 28147c3dd2..cbf84702d1 100644 --- a/images/hub/Dockerfile +++ b/images/hub/Dockerfile @@ -10,7 +10,7 @@ # NOTE: If the image version is updated, also update it in ci/refreeze and # singleuser-sample's Dockerfile! # -FROM python:3.12-bookworm as build-stage +FROM python:3.12-trixie as build-stage # Build wheels # @@ -38,7 +38,7 @@ RUN --mount=type=cache,target=${PIP_CACHE_DIR} \ # This stage is built and published as quay.io/jupyterhub/k8s-hub-slim. It is meant to # provide no non-essential packages. # -FROM python:3.12-slim-bookworm as slim-stage +FROM python:3.12-slim-trixie as slim-stage ENV DEBIAN_FRONTEND=noninteractive ARG NB_USER=jovyan \ diff --git a/images/singleuser-sample/Dockerfile b/images/singleuser-sample/Dockerfile index bf02ec9c19..68bce62c06 100644 --- a/images/singleuser-sample/Dockerfile +++ b/images/singleuser-sample/Dockerfile @@ -10,7 +10,7 @@ # NOTE: If the image version is updated, also update it in ci/refreeze and # hub's Dockerfile! # -FROM python:3.12-bookworm as build-stage +FROM python:3.12-trixie as build-stage # Build wheels # @@ -30,7 +30,7 @@ RUN --mount=type=cache,target=${PIP_CACHE_DIR} \ # The final stage # --------------- # -FROM python:3.12-slim-bookworm +FROM python:3.12-slim-trixie ENV DEBIAN_FRONTEND=noninteractive ENV NB_USER=jovyan \