fix: add --legacy-peer-deps to Dockerfile for React Three Fiber compatibility
Some checks are pending
Deploy to Production / deploy (push) Waiting to run
Test / backend-test (push) Waiting to run
Test / frontend-test (push) Waiting to run

This commit is contained in:
fullsizemalt 2025-12-17 01:59:53 -08:00
parent d45f382b08
commit 999ecc4492

View file

@ -6,7 +6,7 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN npm install
RUN npm install --legacy-peer-deps
# Copy source
COPY . .