Fix: Use npm install instead of npm ci in Dockerfile

This commit is contained in:
cawcenter
2025-12-12 00:43:34 -05:00
parent 2737efa413
commit 2f6c668c11

View File

@@ -4,8 +4,8 @@ WORKDIR /app
# ========= DEPENDENCIES ========= # ========= DEPENDENCIES =========
FROM base AS deps FROM base AS deps
COPY package.json package-lock.json* ./ COPY package.json ./
RUN npm ci RUN npm install
# ========= BUILD ========= # ========= BUILD =========
FROM base AS builder FROM base AS builder