From 7fe879ed610ab82ac9ab54057d56ecd1ccb27a1c Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Thu, 12 Mar 2026 08:56:21 +0700 Subject: [PATCH] fix: Website-creator Dockerfile uses npm install instead of ci - Changed npm ci to npm install (more flexible for production) - Port remains 80 (correct) - Applies to both source and global install --- skills/website-creator/scripts/refactor_existing_website.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/website-creator/scripts/refactor_existing_website.py b/skills/website-creator/scripts/refactor_existing_website.py index 4811d33..eecc112 100644 --- a/skills/website-creator/scripts/refactor_existing_website.py +++ b/skills/website-creator/scripts/refactor_existing_website.py @@ -359,14 +359,14 @@ dist dockerfile = """FROM node:20-alpine AS builder WORKDIR /app COPY package*.json ./ -RUN npm ci +RUN npm install COPY . . RUN npm run build FROM node:20-alpine WORKDIR /app COPY package*.json ./ -RUN npm ci --production +RUN npm install --production COPY --from=builder /app/dist ./dist COPY --from=builder /app/db ./db