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

This commit is contained in:
2026-02-20 14:07:57 +00:00
parent 598ea554a8
commit de3412eefb

View File

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