diff --git a/Dockerfile b/Dockerfile index f06f1d6..38defab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use the official Node.js image as the base image -FROM node:18-alpine AS base +FROM node:23-alpine AS base # Set the working directory WORKDIR /app @@ -17,7 +17,7 @@ COPY . . RUN npm run build # Use a smaller base image for the final stage -FROM node:18-alpine AS final +FROM node:23-alpine AS final # Set the working directory WORKDIR /app