diff --git a/Dockerfile b/Dockerfile index 6ef27b2..8b46fe7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ COPY . . RUN bun run build # Stage 3: Stable production runtime using Node.js -FROM node:18-alpine AS runner +FROM node:22-alpine AS runner WORKDIR /app ENV NODE_ENV=production @@ -33,4 +33,3 @@ EXPOSE 3004 # Run the Next.js server stably with Node CMD ["node", "server.js"] -