Try to fix the build

This commit is contained in:
2025-10-30 17:04:24 +11:00
parent c2d5514094
commit 7fb05d0359
+3 -3
View File
@@ -3,10 +3,10 @@ FROM node:20-alpine AS frontend-builder
WORKDIR /app/frontend
# Copy frontend package files
# Copy frontend package files and install dependencies
COPY frontend/package*.json ./
COPY frontend/.npmrc* ./
RUN npm ci --legacy-peer-deps
COPY frontend/.npmrc ./
RUN npm ci
# Copy frontend source
COPY frontend/ ./