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\"]" ] }