Fix: Use npm install instead of npm ci in Dockerfile
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
jordan 2026-01-29 03:10:22 +00:00
parent ee538b8dd0
commit e114271035

View File

@ -4,7 +4,7 @@ FROM node:20-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm install
COPY . .
RUN npm run build