🖼️ added images support

- Should investigate how to resize the image from .md specs
This commit is contained in:
RJ
2025-11-21 16:15:15 +02:00
committed by Rares J
parent 6155a541f9
commit a039528fb3
26 changed files with 871 additions and 274 deletions

View File

@@ -5,7 +5,7 @@
# ============================================
# Stage 1: Dependencies Installation
# ============================================
FROM node:20-alpine AS deps
FROM node:22-alpine AS deps
# Install libc6-compat for better compatibility
RUN apk add --no-cache libc6-compat
@@ -24,7 +24,7 @@ RUN npm ci
# ============================================
# Stage 2: Build Next.js Application
# ============================================
FROM node:20-alpine AS builder
FROM node:22-alpine AS builder
WORKDIR /app
@@ -57,7 +57,7 @@ RUN npm run build
# ============================================
# Stage 3: Production Runtime
# ============================================
FROM node:20-alpine AS runner
FROM node:22-alpine AS runner
# Install curl for health checks
RUN apk add --no-cache curl