From ec053fc5386ce8dcdc7ecb1ce2bee0be0abdbc05 Mon Sep 17 00:00:00 2001 From: Joshua Ryder Date: Wed, 1 Oct 2025 22:16:08 -0400 Subject: [PATCH] Fix Dockerfile: use npm install instead of npm ci --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 210f8b7..cb05e5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /app COPY package*.json ./ # Install dependencies -RUN npm ci +RUN npm install # Copy application files COPY . .