From 3b158c6213b4a885e2629fabe2994d6724cda7a4 Mon Sep 17 00:00:00 2001 From: Nicholas Buckingham Date: Fri, 8 May 2026 08:31:57 -0600 Subject: [PATCH] fix: add container-safe flags to Edge entrypoint Add --disable-dev-shm-usage and --disable-gpu to prevent crashes in webtop/container environments where /dev/shm is limited and no GPU is available. Co-Authored-By: Oz --- apps/edge/entrypoint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/edge/entrypoint b/apps/edge/entrypoint index ebc314895..8eda12fd4 100755 --- a/apps/edge/entrypoint +++ b/apps/edge/entrypoint @@ -1,4 +1,4 @@ #!/bin/bash # Start Edge -microsoft-edge --no-sandbox --test-type "$@" +microsoft-edge --no-sandbox --test-type --disable-dev-shm-usage --disable-gpu "$@"