fixnodedevdeps

This commit is contained in:
deploy.py
2026-04-28 19:59:36 +02:00
parent 95ec0c3abb
commit de45579c87
+2 -2
View File
@@ -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