mirror of
https://github.com/vndangkhoa/Sys-Arc-Visl.git
synced 2026-04-05 01:17:57 +07:00
fix: Use npm install in Dockerfile to fix cross-platform build issues
This commit is contained in:
parent
5af1e14750
commit
2523414234
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ FROM node:20-alpine AS builder
|
|||
WORKDIR /app
|
||||
|
||||
COPY package*.json ./
|
||||
RUN npm ci
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
|
|
|
|||
Loading…
Reference in a new issue