diff --git a/Dockerfile b/Dockerfile index e99e7287..b2db0264 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20-alpine as builder +FROM node:22-alpine as builder RUN apk add --no-cache git curl WORKDIR /builder @@ -20,7 +20,7 @@ COPY . . RUN yarn build # Create image by copying build artifacts -FROM node:20-alpine as runner +FROM node:22-alpine as runner # Add curl for HEALTHCHECK RUN apk add --no-cache curl