diff --git a/Dockerfile b/Dockerfile index ef6c35c..2ab6eba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ FROM node:20-alpine AS node-build WORKDIR /var/www/html COPY package*.json ./ -RUN npm install +RUN npm ci COPY . . RUN npm run build