From c4bb236385ead02df59fbd951b800fe15134f62c Mon Sep 17 00:00:00 2001 From: Leon Date: Thu, 19 Mar 2026 10:26:00 +0100 Subject: [PATCH] feat: npm run build dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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