fix: use --legacy-peer-deps for client npm install in Dockerfile

This commit is contained in:
friday-bot 2026-05-27 16:59:49 -06:00
parent cb610bb9c1
commit a50ce40d83

View file

@ -15,7 +15,7 @@ COPY package*.json ./
COPY client/package*.json ./client/
COPY server/package*.json ./server/
RUN cd client && npm install
RUN cd client && npm install --legacy-peer-deps
RUN cd server && npm install
# Copy static assets