fix: force devDependencies install in builder stage (Coolify injects NODE_ENV=production)
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
alexandrump
2026-04-22 01:04:59 +02:00
parent 78c5ed52ac
commit 0a97e51dc6

View File

@@ -6,7 +6,7 @@ RUN apk add --no-cache python3 make g++
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm ci --include=dev
COPY . .
RUN npm run build