Fix: Ensure react-icons dependency is installed correctly

This commit is contained in:
2025-12-05 01:11:19 +01:00
parent 8fbe1113dd
commit 45462aa74b
2 changed files with 54 additions and 3 deletions

View File

@@ -2,11 +2,11 @@ FROM node:18-alpine
WORKDIR /app
# Copy package files
# Copy package files first for better caching
COPY package.json package-lock.json* ./
# Install dependencies
RUN npm install
# Install dependencies (no cache to ensure fresh install)
RUN npm install --no-cache
# Copy app files
COPY . .