From 86b985be27c7adae8f0ef6c4e7e1005bf0e97286 Mon Sep 17 00:00:00 2001 From: Aculix Technologies Date: Thu, 16 Oct 2025 13:35:19 +0530 Subject: [PATCH] Update Dockerfile to install dependencies with optional handling --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 21211f7..0a9dada 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,12 +5,11 @@ WORKDIR /app # Copy package files COPY package*.json ./ -# Install dependencies -RUN npm ci +# Install dependencies with proper optional dependency handling +RUN npm install # Copy source code COPY . . # Build the application -RUN npm run build - +RUN npm run build \ No newline at end of file