fixdockerfile

This commit is contained in:
deploy.py
2026-04-28 19:57:49 +02:00
parent 53532f7f59
commit 95ec0c3abb
+2 -2
View File
@@ -8,7 +8,7 @@ FROM node:20-alpine AS frontend-builder
WORKDIR /app/frontend
COPY frontend/package*.json ./
RUN npm ci --prefer-offline
RUN npm install
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 ci
RUN npm install
COPY backend/ ./
RUN npm run build