🖼️ added images support
- Should investigate how to resize the image from .md specs
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user