This commit is contained in:
IGNY8 VPS (Salman)
2025-12-15 07:21:58 +00:00
parent 1924c8fdbe
commit 41551f2edc

View File

@@ -6,8 +6,8 @@ WORKDIR /app
# Copy package files # Copy package files
COPY package*.json ./ COPY package*.json ./
# Install dependencies # Install dependencies (use --legacy-peer-deps to handle React 19 peer dependency conflicts)
RUN npm install RUN npm install --legacy-peer-deps
# Copy source code (will be mounted as volume, but needed for initial setup) # Copy source code (will be mounted as volume, but needed for initial setup)
COPY . . COPY . .