From 1248e97f0c14abfe3523c9a2ea490f18f243fbbc Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sat, 14 Feb 2026 21:45:03 +0100 Subject: [PATCH] Switch base images to Debian 13 "trixie" --- Dockerfile | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index cf54058..5b66da4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:bookworm-slim +FROM debian:trixie-slim MAINTAINER Prosody Developers @@ -6,7 +6,7 @@ ARG PROSODY_PACKAGE=prosody-0.12 ARG LUA_PACKAGE=lua5.4 ARG BUILD_ID= -ADD https://prosody.im/downloads/repos/bookworm/prosody.sources /etc/apt/sources.list.d/prosody.sources +ADD https://prosody.im/downloads/repos/trixie/prosody.sources /etc/apt/sources.list.d/prosody.sources # Install dependencies RUN apt-get update \ diff --git a/README.md b/README.md index 1519580..50155c6 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This is the Prosody Docker image building repository. It is used by our build se It works by enabling the [prosody package repository](https://prosody.im/download/package_repository) and installing the selected Prosody package from there based on the `PROSODY_PACKAGE` build argument. -Docker images are built off an __Debian 12 (bookworm)__ base. +Docker images are built off an __Debian 13 (trixie)__ base. ```bash docker run -d --name prosody -p 5222:5222 prosody/prosody