We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20cc532 commit 64f2f73Copy full SHA for 64f2f73
installer/Dockerfile
@@ -2,8 +2,8 @@ FROM node:24-alpine AS web-build
2
COPY ui ui
3
RUN cd ui && \
4
npm install --prefer-offline --no-audit && \
5
- NODE_OPTIONS="--max-old-space-size=4096" npm run build && \
6
- NODE_OPTIONS="--max-old-space-size=4096" npm run build-chat && \
+ npm install -D concurrently && \
+ NODE_OPTIONS="--max-old-space-size=4096" npx concurrently "npm run build" "npm run build-chat" && \
7
find . -maxdepth 1 ! -name '.' ! -name 'dist' ! -name 'public' -exec rm -rf {} +
8
9
FROM ghcr.io/1panel-dev/maxkb-base:python3.11-pg17.6 AS stage-build
0 commit comments