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 245babb commit 1e00a6dCopy full SHA for 1e00a6d
installer/Dockerfile
@@ -1,10 +1,9 @@
1
FROM node:24-alpine AS web-build
2
COPY ui ui
3
RUN cd ui && \
4
- corepack enable && \
5
- pnpm install && \
6
- NODE_OPTIONS="--max-old-space-size=4096" pnpm run build && \
7
- NODE_OPTIONS="--max-old-space-size=4096" pnpm run build-chat && \
+ npm install && \
+ NODE_OPTIONS="--max-old-space-size=4096" npm run build && \
+ NODE_OPTIONS="--max-old-space-size=4096" npm run build-chat && \
8
find . -maxdepth 1 ! -name '.' ! -name 'dist' ! -name 'public' -exec rm -rf {} +
9
10
FROM ghcr.io/1panel-dev/maxkb-base:python3.11-pg17.6 AS stage-build
0 commit comments