Fix: Ensure react-icons dependency is installed correctly
This commit is contained in:
@@ -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 . .
|
||||
|
||||
Reference in New Issue
Block a user