fix: Remove package-lock.json in Dockerfile to bypass platform checks

This commit is contained in:
SysVis AI 2026-01-05 18:40:54 +07:00
parent 2523414234
commit fb3e812e1a

View file

@ -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