From 4a4b759a3736b7c1974b75473bdd2073a47a3e52 Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 14 May 2026 17:56:34 -0700 Subject: [PATCH] Run production server directly in CapRover --- captain-definition | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/captain-definition b/captain-definition index 02ab8ee..efaa308 100644 --- a/captain-definition +++ b/captain-definition @@ -4,9 +4,9 @@ "FROM node:20", "WORKDIR /app", "COPY hdyc-svelte/package*.json ./", - "RUN npm install", + "RUN npm ci", "COPY hdyc-svelte/ .", "RUN npm run build", - "CMD [\"npm\", \"run\", \"start\"]" + "CMD [\"node\", \"build\"]" ] }