diff --git a/Dockerfile b/Dockerfile index e0ce2af..c0b0cce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # --- Build stage --- -FROM node:20-slim AS build +FROM node:26-slim AS build WORKDIR /app @@ -10,7 +10,7 @@ COPY . . RUN npm run build # --- Production stage --- -FROM node:20-slim AS production +FROM node:26-slim AS production WORKDIR /app