diff --git a/Dockerfile b/Dockerfile index 21211f7..0a9dada 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,12 +5,11 @@ WORKDIR /app # Copy package files COPY package*.json ./ -# Install dependencies -RUN npm ci +# Install dependencies with proper optional dependency handling +RUN npm install # Copy source code COPY . . # Build the application -RUN npm run build - +RUN npm run build \ No newline at end of file