From dd12262c83c5c90f536c501558290d4e0a7353f5 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Sun, 15 Feb 2026 08:45:32 -0500 Subject: [PATCH] Fix Happy Coder npm package name Changed from incorrect `@happy-sdk/happy-coder` to correct `happy-coder` package name. The scoped package doesn't exist on npm, causing Docker build failures. This fixes the v1.0.0 release Docker build. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c6490d0..0eb5955 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,7 +38,7 @@ RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \ rm -rf /var/lib/apt/lists/* # Install Happy Coder globally -RUN npm install -g @happy-sdk/happy-coder +RUN npm install -g happy-coder # Install Antigravity (Google's Project IDX / Cloud Code alternative) # Note: Antigravity might be packaged differently - adjust as needed