diff --git a/Dockerfile b/Dockerfile index 6cfb7d8..515c227 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,8 @@ WORKDIR /app # Copy package.json and package-lock.json first to leverage Docker cache COPY package*.json ./ -# Install dependencies with legacy-peer-deps to avoid conflicts -RUN npm install --legacy-peer-deps +# Install dependencies +RUN npm install # Copy the rest of the application code COPY . .