Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions images/hub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
#
Expand Down Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions images/singleuser-sample/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
#
Expand All @@ -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 \
Expand Down