diff --git a/Dockerfile b/Dockerfile index 67ae857..9de1ca7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # ---- Build stage ---- -FROM node:20-alpine AS builder +FROM node:22-alpine AS builder WORKDIR /app @@ -10,7 +10,7 @@ COPY . . RUN npm run build # ---- Production stage ---- -FROM node:20-alpine AS runner +FROM node:22-alpine AS runner WORKDIR /app