Fix npm ci flag for npm 9+ compatibility
Deploy to Dev / Deploy & Smoke Test (push) Failing after 5s

--only=production was removed in npm 9; use --omit=dev instead.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-07-07 22:51:43 -06:00
parent 9209fbdcfc
commit 4a79fe3ad2
+1 -1
View File
@@ -5,7 +5,7 @@ RUN apk add --no-cache python3 make g++
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
RUN npm ci --omit=dev
COPY . .