From 0da1fbf9db08fa36250c3509c65d8c77960af3ad Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Wed, 1 Jul 2026 08:11:03 -0700 Subject: [PATCH] mopidy: add setuptools to fix 'No module named pkg_resources' Python 3.12 slim doesn't bundle setuptools. mopidy imports pkg_resources from setuptools; without it, mopidy crashes on startup. --- infra/mopidy/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/infra/mopidy/Dockerfile b/infra/mopidy/Dockerfile index 7c690d3..2d715ea 100644 --- a/infra/mopidy/Dockerfile +++ b/infra/mopidy/Dockerfile @@ -16,6 +16,7 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* RUN pip install --no-cache-dir \ + setuptools \ Mopidy==3.4.2 \ Mopidy-Qobuz \ Mopidy-Local