From 9130bc418e534a98ea4f1c26873f20aa9865caa5 Mon Sep 17 00:00:00 2001 From: Charmunks Date: Sat, 6 Dec 2025 16:46:40 -0500 Subject: [PATCH] Fix Dockerfile to install devDependencies for Vite build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ef94008..0b7845f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,9 +37,9 @@ WORKDIR /app COPY package*.json ./ COPY client/package*.json ./client/ -# Install dependencies +# Install dependencies (include devDependencies for build) RUN npm install -RUN cd client && npm install +RUN cd client && npm install --include=dev # Copy application code COPY . .