Fix Node Dockerfiles: npm ci --include=dev so tsc is available in builder stage
All checks were successful
CI — P2 Drift (Go + Node) / saas (push) Successful in 34s
CI — P3 Alert / test (push) Successful in 38s
CI — P4 Portal / test (push) Successful in 38s
CI — P6 Run / saas (push) Successful in 39s
CI — P2 Drift (Go + Node) / agent (push) Successful in 1m15s
CI — P5 Cost / test (push) Successful in 1m7s

This commit is contained in:
2026-03-01 19:31:44 +00:00
parent aec0d62787
commit 362c94af33
5 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
FROM node:22-slim AS builder
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm ci
RUN npm ci --include=dev
COPY . .
RUN npm run build