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