CI pnpm -> npm 2
All checks were successful
Deploy App / build (push) Successful in 21s
Deploy App / deploy (push) Successful in 22s

This commit is contained in:
valere
2025-11-07 20:12:13 +01:00
parent 8bfa7f856f
commit f187390038

View File

@@ -2,7 +2,7 @@ FROM node:20-bookworm AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm ci --verbose
RUN npm run build
FROM node:20-slim AS runner