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 63d441f commit ded8281Copy full SHA for ded8281
installer/Dockerfile
@@ -1,9 +1,10 @@
1
-FROM node:18-alpine3.18 AS web-build
+FROM node:24-alpine AS web-build
2
COPY ui ui
3
RUN cd ui && \
4
- npm install && \
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 -g pnpm && \
+ pnpm install && \
+ NODE_OPTIONS="--max-old-space-size=4096" pnpm run build && \
7
+ NODE_OPTIONS="--max-old-space-size=4096" pnpm 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