Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-slim AS front_builder
FROM node:24-slim AS front_builder
ARG VERSION
ARG SAAS
SHELL ["/bin/bash", "-c"]
Expand All @@ -24,7 +24,7 @@ RUN if [[ -n $SAAS ]]; then API_ROOT=/api yarn build --configuration=saas-produc
else API_ROOT=/api yarn build --configuration=production; fi
RUN ls /app/frontend/dist/rocketadmin/browser

FROM node:22-slim
FROM node:24-slim

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

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.rocketadmin-agent
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-slim
FROM node:24-slim

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

Expand Down
Loading