From de45579c878530ca17b60af767257627e5a34f1b Mon Sep 17 00:00:00 2001 From: "deploy.py" Date: Tue, 28 Apr 2026 19:59:36 +0200 Subject: [PATCH] fixnodedevdeps --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 354f177..14fa978 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ FROM node:20-alpine AS frontend-builder WORKDIR /app/frontend COPY frontend/package*.json ./ -RUN npm install +RUN npm install --include=dev COPY frontend/ ./ RUN npm run build @@ -20,7 +20,7 @@ RUN apk add --no-cache python3 make g++ WORKDIR /app/backend COPY backend/package*.json ./ -RUN npm install +RUN npm install --include=dev COPY backend/ ./ RUN npm run build