diff --git a/Dockerfile b/Dockerfile index 97919e8..5ce6e12 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM node:18-alpine AS builder +FROM node:20-alpine AS builder WORKDIR /app @@ -12,7 +12,7 @@ COPY . . RUN npm run build # Production stage -FROM node:18-alpine +FROM node:20-alpine WORKDIR /app