fix: upgrade Dockerfile to Node.js 20 for Next.js build

This commit is contained in:
root
2026-07-05 19:54:05 +03:30
parent d8e0d6efbd
commit 20ed2d5d24
3 changed files with 3035 additions and 2991 deletions

View File

@@ -1,15 +1,15 @@
FROM node:18-alpine AS builder
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
RUN npm install --force
COPY . .
RUN npm run build
FROM node:18-alpine AS runner
FROM node:20-alpine AS runner
WORKDIR /app