diff --git a/Dockerfile b/Dockerfile index d2f5e0e..c5d5342 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:22-alpine AS build-frontend WORKDIR /build COPY frontend/package.json frontend/package-lock.json* ./ -RUN npm install -g npm@latest --quiet && npm install +RUN npm ci --quiet COPY frontend/ . RUN npm run build