Skip to content

Commit 27e9bf2

Browse files
committed
chore: update Dockerfile to use Node.js 22-alpine for app and portal
- Changed the base image in the Dockerfile for both the app and portal from node:20-alpine to node:22-alpine, ensuring compatibility with the latest features and improvements.
1 parent d74cbde commit 27e9bf2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ RUN cd apps/app && SKIP_ENV_VALIDATION=true bun run build
8989
# =============================================================================
9090
# STAGE 4: App Production
9191
# =============================================================================
92-
FROM node:20-alpine AS app
92+
FROM node:22-alpine AS app
9393

9494
WORKDIR /app
9595

@@ -129,7 +129,7 @@ RUN cd apps/portal && SKIP_ENV_VALIDATION=true bun run build
129129
# =============================================================================
130130
# STAGE 6: Portal Production
131131
# =============================================================================
132-
FROM node:20-alpine AS portal
132+
FROM node:22-alpine AS portal
133133

134134
WORKDIR /app
135135

0 commit comments

Comments
 (0)