From 594080e35b6e72acc1d6225080ef24e6c5c19fb2 Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Tue, 22 Jul 2025 23:10:27 +0200 Subject: [PATCH] prepend ~/.local/bin to $PATH (instead of replace) for pipx, fixup #497 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8086f54..ab77c51 100644 --- a/Dockerfile +++ b/Dockerfile @@ -99,7 +99,7 @@ ENV DEPTH=24 ENV SHOW=1 # apprise is installed via pipx, so it is in /root/.local/bin -ENV PATH="/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" +ENV PATH="/root/.local/bin:$PATH" # mega-linter (KICS, Trivy) complained about it missing - usually this checks some API endpoint, for a container that runs ~1min a healthcheck doesn't make that much sense since playwright has timeouts for everything. Could react to SIGUSR1 and check something in JS - for now we just check that node is running and noVNC is reachable... HEALTHCHECK --interval=5s --timeout=5s CMD pgrep node && curl --fail http://localhost:6080 || exit 1