fix: Use npm install instead of npm ci (no package-lock.json)

This commit is contained in:
Francesco
2026-02-19 02:40:41 +00:00
parent da34fc0304
commit 69994c8af2

View File

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