diff --git a/Dockerfile b/Dockerfile index 7b5af12..2a100fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM node:20-alpine AS builder +FROM node:24-alpine AS builder # Set working directory WORKDIR /app @@ -18,7 +18,7 @@ COPY src/ ./src/ RUN npm run build # Production stage -FROM node:20-alpine AS production +FROM node:24-alpine AS production # Install dumb-init for proper signal handling RUN apk add --no-cache dumb-init