Skip to content

Commit 34cbce9

Browse files
committed
🐛 Fix Dockerfile to use correct Node.js version
1 parent e9a8ed5 commit 34cbce9

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
@@ -1,4 +1,4 @@
1-
FROM node:24.13.0-alpine AS base
1+
FROM node:22.17.0-alpine AS base
22

33
# Install pnpm
44
RUN npm install -g pnpm@10.13.1
@@ -19,7 +19,7 @@ RUN pnpm run check:size
1919
RUN pnpm run build:prod
2020

2121
# Production image
22-
FROM node:24.13.0-alpine AS runner
22+
FROM node:22.17.0-alpine AS runner
2323
WORKDIR /app
2424

2525
# Copy necessary files from builder

0 commit comments

Comments
 (0)