From a36c9a24db0a95a6c40d1348ab249c67447df473 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Thu, 26 Feb 2026 19:34:08 +0000 Subject: [PATCH] build: appimage: fix build missing a system-wide python MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ``` �� INFO: preparing electrum-locale. [...] running stats.py /usr/bin/env: �python3�: No such file or directory ``` regression from https://github.com/spesmilo/electrum/commit/3afa2fcdf3cce609d8813bbdd7b5962214de5ec0 This had shown up on the CI [0] but we did not notice - there is too many random failures, too much noise :( [0]: https://github.com/spesmilo/electrum/runs/64623983097 --- contrib/build-linux/appimage/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/build-linux/appimage/Dockerfile b/contrib/build-linux/appimage/Dockerfile index 5f43ac930..0c125a0c2 100644 --- a/contrib/build-linux/appimage/Dockerfile +++ b/contrib/build-linux/appimage/Dockerfile @@ -20,6 +20,7 @@ RUN apt-get update -q && \ sudo \ git \ wget \ + python3 \ make \ autotools-dev \ autoconf \