Use npm install instead of npm ci for lockfile compat

This commit is contained in:
Ryan Malloy 2026-02-23 16:23:51 -07:00
parent 3d8bc3b090
commit 31b1d66942

View File

@ -2,7 +2,7 @@
FROM node:22-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm install
COPY . .
ENV ASTRO_TELEMETRY_DISABLED=1
RUN npm run build