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 \