diff --git a/Dockerfile b/Dockerfile index ae07969..9cdad17 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ COPY package*.json ./ COPY frontend/package*.json ./frontend/ # Install dependencies -RUN npm ci -RUN cd frontend && npm ci +RUN npm i +RUN cd frontend && npm i # Copy source files COPY . . @@ -26,7 +26,7 @@ WORKDIR /app # Install only production dependencies COPY package*.json ./ -RUN npm ci --production +RUN npm i --production # Copy built files COPY --from=builder /app/build ./build