From ef4630752a1f5309a9282e48ca91b019fed3dcf1 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Thu, 28 May 2026 09:10:09 -0700 Subject: [PATCH] fix: allow arm64 playwright install to finish in docker --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5c7cd6ca..3ca3b2d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -319,7 +319,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=apt-$TARGETARCH$T && apt-get update -qq \ && if [ "$TARGETARCH" = "arm64" ]; then \ abxpkg install --binproviders=npm --overrides='{"npm":{"install_args":["playwright@next"]}}' playwright; \ - abxpkg install --no-cache --binproviders=playwright --bin-dir="$LIB_DIR/env/bin" chromium; \ + abxpkg install --no-cache --install-timeout=600 --binproviders=playwright --bin-dir="$LIB_DIR/env/bin" chromium; \ fi \ && PUID=0 PGID=0 abx-dl plugins --install \ && find "$LIB_DIR" -type d -name __pycache__ -prune -exec rm -rf {} + \