From eae178cc8e643a11b6a7ef5c181ad4c67dd44fa2 Mon Sep 17 00:00:00 2001 From: Dan Date: Mon, 22 Jun 2026 00:04:05 -0600 Subject: [PATCH] fix: use npm install instead of npm ci for cross-platofmr compatibility --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 12fca8e..1d876d5 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -2,7 +2,7 @@ FROM node:20-alpine AS build WORKDIR /app COPY package*.json ./ -RUN npm ci +RUN npm install COPY . . RUN npm run build