fix: install all dependencies including devDependencies for build
CI/CD Pipeline / Build & Deploy (push) Failing after 49s

This commit is contained in:
wh-leader
2026-05-11 12:04:09 +02:00
parent 47bf985a79
commit 259fef1f95
+2 -2
View File
@@ -8,8 +8,8 @@ WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci --only=production
# Install ALL dependencies (build needs devDependencies)
RUN npm ci
# Copy source
COPY . .