chore: use npm ci for building

This commit is contained in:
Damillora 2025-02-22 16:10:23 +00:00
parent 2cb4d344cd
commit 6bde5a6af6

View File

@ -11,7 +11,7 @@ FROM node:20-alpine AS node_build
WORKDIR /src WORKDIR /src
COPY . . COPY . .
WORKDIR /src/web/app WORKDIR /src/web/app
RUN npm install && npm run build RUN npm ci && npm run build
FROM scratch AS runtime FROM scratch AS runtime