diff --git a/Dockerfile b/Dockerfile index c044ce1..b2a2182 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:20-alpine AS builder WORKDIR /app COPY package*.json ./ -RUN npm install +RUN rm package-lock.json && npm install COPY . . RUN npm run build