Add files via upload

This commit is contained in:
jasonMPM
2026-03-05 12:37:42 -06:00
committed by GitHub
parent 05d9b51a9e
commit 533da307ef
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ FROM node:18-alpine AS frontend-build
WORKDIR /app/frontend
COPY frontend/package*.json ./
RUN npm install
RUN npm install --legacy-peer-deps
COPY frontend/ ./
RUN npm run build