Skip to content

Commit 0e02b3f

Browse files
committed
chore: update Node.js version from 22 to 24 in Dockerfiles
1 parent b1bc842 commit 0e02b3f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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)