diff --git a/Dockerfile b/Dockerfile index 24a08cb..0d708e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:20-alpine AS builder WORKDIR /app -COPY package*.json ./ -RUN npm ci +COPY package.json ./ +RUN npm install COPY . . RUN npm run build