From be9fa124df1e2abbd19bd02534348026c9d9e10c Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 4 Jan 2026 05:23:07 +0000 Subject: [PATCH] build: add pkg-config + libasound2-dev to sandbox image --- scripts/sandbox-common-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sandbox-common-setup.sh b/scripts/sandbox-common-setup.sh index 10aa872cb..cf4d2787e 100755 --- a/scripts/sandbox-common-setup.sh +++ b/scripts/sandbox-common-setup.sh @@ -3,7 +3,7 @@ set -euo pipefail BASE_IMAGE="${BASE_IMAGE:-clawdis-sandbox:bookworm-slim}" TARGET_IMAGE="${TARGET_IMAGE:-clawdis-sandbox-common:bookworm-slim}" -PACKAGES="${PACKAGES:-curl wget jq coreutils grep nodejs npm python3 git ca-certificates golang-go rustc cargo}" +PACKAGES="${PACKAGES:-curl wget jq coreutils grep nodejs npm python3 git ca-certificates golang-go rustc cargo unzip pkg-config libasound2-dev}" INSTALL_PNPM="${INSTALL_PNPM:-1}" INSTALL_BUN="${INSTALL_BUN:-1}" BUN_INSTALL_DIR="${BUN_INSTALL_DIR:-/opt/bun}"