Merge pull request 'changed docker' (#21) from fix/ssh_issue into main
continuous-integration/drone/push Build is failing Details

Reviewed-on: #21
This commit is contained in:
hardik 2025-09-29 17:33:05 +05:30
commit 1fdaa68dd1
1 changed files with 3 additions and 0 deletions

View File

@ -4,7 +4,10 @@ WORKDIR /app
# Copy package files and install dependencies # Copy package files and install dependencies
COPY package.json package-lock.json ./ COPY package.json package-lock.json ./
# ...existing code...
RUN npm install RUN npm install
RUN chmod +x node_modules/.bin/vite
# ...existing code...
# Copy the rest of the source code # Copy the rest of the source code
COPY . . COPY . .