From 8a8fbfbcf6c8031cb8c986c55eb3c5d5290d6e93 Mon Sep 17 00:00:00 2001 From: adam Date: Sat, 7 Mar 2026 03:06:26 +0000 Subject: [PATCH] Use npm install instead of npm ci (no lockfile) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2d9248a..d0a5fce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:22-alpine AS frontend-build WORKDIR /app/frontend COPY frontend/package.json frontend/package-lock.json* ./ -RUN npm ci +RUN npm install COPY frontend/ ./ RUN npm run build # Output: /app/static/