From efa5afd79a7cca52ea4f8286955966d761f08b51 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Mon, 16 Feb 2026 00:10:24 -0500 Subject: [PATCH] fix: Change Dockerfile to use npm install instead of npm ci for dependency installation --- client/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Dockerfile b/client/Dockerfile index c15602d..3ce1f57 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app COPY package*.json ./ # Install dependencies -RUN npm ci +RUN npm install # Copy source code COPY . .