From 31b1d669425e7801574e12d42af93597e40f53af Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Mon, 23 Feb 2026 16:23:51 -0700 Subject: [PATCH] Use npm install instead of npm ci for lockfile compat --- docs-site/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-site/Dockerfile b/docs-site/Dockerfile index 61a085b..a6596bc 100644 --- a/docs-site/Dockerfile +++ b/docs-site/Dockerfile @@ -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