fix: use npm ci without --omit=dev to install rollup native binaries

This commit is contained in:
Kunthawat Greethong
2026-07-01 10:58:43 +07:00
parent 4fbeb01003
commit 4c7531ddc5

View File

@@ -13,7 +13,7 @@ WORKDIR /app
# ── Dependencies ──────────────────────────────────────────────────
COPY package.json package-lock.json ./
RUN npm ci --omit=dev 2>/dev/null || npm ci
RUN npm ci
# ── Source + Build ───────────────────────────────────────────────
COPY . .