From 6bde5a6af61b1f2c20b949480601d8e1503fc54d Mon Sep 17 00:00:00 2001 From: Damillora Date: Sat, 22 Feb 2025 16:10:23 +0000 Subject: [PATCH] chore: use npm ci for building --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f58692b..513d979 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ FROM node:20-alpine AS node_build WORKDIR /src COPY . . WORKDIR /src/web/app -RUN npm install && npm run build +RUN npm ci && npm run build FROM scratch AS runtime