This commit is contained in:
hosseintaromi 2025-12-27 17:59:34 +03:30
commit 62c4544897
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
FROM node:18-alpine as builder FROM node:18-alpine AS builder
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci RUN npm ci --legacy-peer-deps
COPY . . COPY . .