diff --git a/Dockerfile b/Dockerfile index 83c5fc9..13818a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:24-alpine AS builder WORKDIR /app COPY package*.json ./ -RUN npm install +RUN npm clean-install COPY . . RUN npm run build