Fix: Upgrade runtime to Node 22 Alpine LTS

This commit is contained in:
2026-03-14 18:32:33 -07:00
parent 9b5044c054
commit 4d93add4df

View File

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