This commit is contained in:
DESKTOP-2S5P7D1\Windows 10 2024-10-18 10:03:54 +07:00
parent 181f351860
commit 9ebd25c7bb

View file

@ -6,7 +6,7 @@ WORKDIR /app
# Install app dependencies # Install app dependencies
COPY package*.json ./ COPY package*.json ./
RUN npm i RUN npm ci
COPY . . COPY . .
@ -24,7 +24,7 @@ WORKDIR /app
COPY package*.json ./ COPY package*.json ./
# COPY .env ./ # COPY .env ./
RUN npm i --production RUN npm ci --production
COPY --from=builder /app/dist ./dist COPY --from=builder /app/dist ./dist