File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ * .md
2+ .git
3+ src /webui /FE /node_modules
Original file line number Diff line number Diff line change 3131 - name : Setup node
3232 uses : actions/setup-node@v4
3333 with :
34- node-version : 20
34+ node-version : 24
3535 registry-url : ' https://registry.npmjs.org'
3636
3737 - name : Install dependencies
Original file line number Diff line number Diff line change 1- FROM node:24-alpine
1+ FROM node:24-alpine3.23
22
33ARG LLBOT_VERSION
44
Original file line number Diff line number Diff line change 1- FROM node:24-alpine AS builder
2-
3- ARG HTTP_PROXY
4- ARG HTTPS_PROXY
5- ENV HTTP_PROXY=${HTTP_PROXY} HTTPS_PROXY=${HTTPS_PROXY}
1+ FROM node:24-alpine3.23 AS builder
62
73WORKDIR /app
84
@@ -23,11 +19,7 @@ RUN yarn build-webui
2319RUN yarn build
2420
2521
26- FROM node:24-alpine AS production
27-
28- ARG HTTP_PROXY
29- ARG HTTPS_PROXY
30- ENV HTTP_PROXY=${HTTP_PROXY} HTTPS_PROXY=${HTTPS_PROXY}
22+ FROM node:24-alpine3.23 AS production
3123
3224RUN set -eux; \
3325 apk update; \
@@ -45,6 +37,4 @@ RUN chmod +x /startup.sh
4537
4638RUN touch /.dockerenv
4739
48- ENV HTTP_PROXY= HTTPS_PROXY=
49-
5040ENTRYPOINT ["/startup.sh"]
You can’t perform that action at this time.
0 commit comments