From 89645682f16ae015f880180cef329eb9b7ec21c4 Mon Sep 17 00:00:00 2001 From: JB Date: Mon, 22 Dec 2025 06:17:40 -0800 Subject: [PATCH] fix: Use abogen-web command in Docker for headless web UI The 'abogen' command now launches the PyQt6 desktop GUI which requires display libraries not available in Docker containers. Changed the Docker CMD to use 'abogen-web' which launches the Flask web UI. --- abogen/webui/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abogen/webui/Dockerfile b/abogen/webui/Dockerfile index 037dc53..cd4070a 100644 --- a/abogen/webui/Dockerfile +++ b/abogen/webui/Dockerfile @@ -66,4 +66,4 @@ RUN useradd -m -u 1000 abogen \ USER abogen -CMD ["abogen"] +CMD ["abogen-web"]