From ad9c40cef551e7f19bc4d9e67d1f2039d15a73c8 Mon Sep 17 00:00:00 2001 From: Seth Van Niekerk Date: Mon, 9 Feb 2026 12:03:18 -0500 Subject: [PATCH] Python entrypoint fix --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 051438f..b17fd7f 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -3,7 +3,7 @@ set -e # Function to build the command based on environment variables build_command() { - local cmd="python3 /app/update_channel_logos.py" + local cmd="/usr/local/bin/python3 /app/update_channel_logos.py" # Required parameters cmd="$cmd --server \"$EMBY_SERVER_URL\""