fix: add --no-sandbox to antigravity launch command #21

Merged
cpfarhood merged 2 commits from fix/antigravity-no-sandbox into main 2026-02-20 20:25:33 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit e90a2fe553 - Show all commits
+1 -1
View File
@@ -2,5 +2,5 @@ apiVersion: v2
name: devcontainer
description: Antigravity Dev Container with Happy Coder AI assistant
type: application
version: 0.1.7
version: 0.1.8
appVersion: "latest"
+2 -1
View File
@@ -21,7 +21,8 @@ echo "Workspace: $WORKSPACE_DIR"
case "$IDE" in
antigravity)
echo "Opening Google Antigravity in: $WORKSPACE_DIR"
exec antigravity --new-window --wait "$WORKSPACE_DIR"
# --no-sandbox and --disable-dev-shm-usage are required for Electron apps in Docker
exec antigravity --no-sandbox --disable-dev-shm-usage --new-window --wait "$WORKSPACE_DIR"
;;
none)
echo "IDE=none: no IDE launched, keeping container alive."