From 25cd89c37e1d03989a9db8eff9aefe432c0b2933 Mon Sep 17 00:00:00 2001 From: WildDragon Deploy Date: Wed, 27 May 2026 23:42:11 -0400 Subject: [PATCH] fix: copy scripts/ before npm ci to satisfy postinstall hook --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 29a4470..259cd22 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,8 +11,9 @@ RUN npm install -g @anthropic-ai/claude-code task-master-ai WORKDIR /app -# Install dependencies (separate layer for cache efficiency) +# Copy package files and scripts needed for postinstall hooks COPY package*.json ./ +COPY scripts/ ./scripts/ RUN npm ci # VITE_ vars must be present at build time (baked into frontend bundle)