Fix error

main
mula.liu 2026-01-19 19:21:03 +08:00
parent bc57549b4b
commit 29267c266e
1 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,9 @@ WORKDIR /app
# Copy package files
COPY package.json package-lock.json ./
# Delete package-lock.json to avoid platform specific issues and force fresh resolution
RUN rm package-lock.json
# Install dependencies
RUN npm install --legacy-peer-deps