changed docker #21

Merged
hardik merged 1 commits from fix/ssh_issue into main 2025-09-29 17:33:07 +05:30
1 changed files with 3 additions and 0 deletions
Showing only changes of commit 45d12e77e0 - Show all commits

View File

@ -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 . .