From 28c38ae28b9b7cc10d120b3af57d2185b379d575 Mon Sep 17 00:00:00 2001 From: "exe.dev user" Date: Thu, 30 Apr 2026 23:00:02 +0000 Subject: [PATCH] fix(container): pin vercel to 52.2.1 to dodge broken 53.0.1 publish vercel@53.0.1 declares a dep on @vercel/static-build@2.9.22 which is not published on npm (only 2.9.21 exists), breaking every fresh container build that resolves vercel@latest. Co-Authored-By: Claude Opus 4.7 (1M context) --- container/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/Dockerfile b/container/Dockerfile index 4b4cf22..efa58b6 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -21,7 +21,7 @@ ARG INSTALL_CJK_FONTS=false # across all users. ARG CLAUDE_CODE_VERSION=2.1.116 ARG AGENT_BROWSER_VERSION=latest -ARG VERCEL_VERSION=latest +ARG VERCEL_VERSION=52.2.1 ARG BUN_VERSION=1.3.12 # ---- System dependencies -----------------------------------------------------