From cfb9c649cb2d5735f0713f48613727e5c8ede6e3 Mon Sep 17 00:00:00 2001 From: Wouter Verhelst Date: Tue, 15 Oct 2024 13:54:45 +0200 Subject: [PATCH] Use testing, not unstable We need something more recent than stable, because otherwise debootstrap will not (yet) know about the recent ubuntu releases. However, unstable is sometimes uninstallable when major subsystems are updated, which can make things more complicated if we try to update the image at the wrong time. Work around this by using testing rather than unstable --- .ci/dockerfiles/deb-sbuild/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/dockerfiles/deb-sbuild/Dockerfile b/.ci/dockerfiles/deb-sbuild/Dockerfile index e4fecd47f..e2884bfee 100644 --- a/.ci/dockerfiles/deb-sbuild/Dockerfile +++ b/.ci/dockerfiles/deb-sbuild/Dockerfile @@ -3,7 +3,7 @@ # distribution and a few things changed so we get a more recent version of # debootstrap. -FROM debian:unstable-slim +FROM debian:testing-slim RUN echo "deb http://deb.debian.org/debian experimental main" >> /etc/apt/sources.list