Skip to content

Commit accd606

Browse files
authored
Merge pull request #1557 from rocket-admin/backend_change_node_version
chore: update Node.js version from 22 to 24 in Dockerfiles
2 parents da3a51d + 9302951 commit accd606

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22-slim AS front_builder
1+
FROM node:24-slim AS front_builder
22
ARG VERSION
33
ARG SAAS
44
SHELL ["/bin/bash", "-c"]
@@ -24,7 +24,7 @@ RUN if [[ -n $SAAS ]]; then API_ROOT=/api yarn build --configuration=saas-produc
2424
else API_ROOT=/api yarn build --configuration=production; fi
2525
RUN ls /app/frontend/dist/rocketadmin/browser
2626

27-
FROM node:22-slim
27+
FROM node:24-slim
2828

2929
RUN groupadd -r appuser && useradd -r -g appuser -d /app -s /sbin/nologin appuser
3030

Dockerfile.rocketadmin-agent

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22-slim
1+
FROM node:24-slim
22

33
RUN groupadd -r appuser && useradd -r -g appuser -d /app -s /sbin/nologin appuser
44

0 commit comments

Comments
 (0)