From 34a096ccf498f5ddaeb8e74afb6c54c3e78fe07c Mon Sep 17 00:00:00 2001 From: CaptainB Date: Mon, 16 Jun 2025 10:47:31 +0800 Subject: [PATCH] fix: update Dockerfile to use 'build-only' command for UI build process --- installer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/Dockerfile b/installer/Dockerfile index 3e41ebe2..8aa82bb0 100644 --- a/installer/Dockerfile +++ b/installer/Dockerfile @@ -3,7 +3,7 @@ FROM node:18-alpine3.18 AS web-build COPY ui ui RUN cd ui && \ npm install && \ - npm run build && \ + npm run build-only && \ rm -rf ./node_modules FROM ghcr.io/1panel-dev/maxkb-base:python3.11-pg17.4 AS stage-build