without force

This commit is contained in:
Parsa Nazer
2025-07-28 15:34:55 +03:30
parent 996de7aab2
commit 5ae3ae9376
+1 -1
View File
@@ -1,7 +1,7 @@
FROM node:20-alpine as build-stage
WORKDIR /app
COPY package*.json ./
RUN npm install --force
RUN npm install
COPY . .
RUN npm run build