diff --git a/Dockerfile b/Dockerfile index f1b83ef..eb40086 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM node:18-alpine AS builder +FROM node:26-alpine AS builder # Install build dependencies RUN apk add --no-cache python3 make g++ @@ -19,7 +19,7 @@ COPY . . RUN npm run build # Production stage -FROM node:18-alpine +FROM node:26-alpine WORKDIR /app