From 45d12e77e039544537dbe870d87f1da252fc72eb Mon Sep 17 00:00:00 2001 From: hardik Date: Mon, 29 Sep 2025 17:30:58 +0530 Subject: [PATCH] changed docker --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index fcae72e3..b5714037 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,10 @@ WORKDIR /app # Copy package files and install dependencies COPY package.json package-lock.json ./ +# ...existing code... RUN npm install +RUN chmod +x node_modules/.bin/vite +# ...existing code... # Copy the rest of the source code COPY . . -- 2.40.1