initial commit

This commit is contained in:
root
2025-12-20 22:40:21 +00:00
parent 95266c2072
commit cc015f342a
2 changed files with 5 additions and 5 deletions

View File

@@ -3,12 +3,12 @@ FROM node:lts-alpine3.23 AS base
WORKDIR /app
COPY package.json package-lock.json ./
# Install necessary dependencies for sharp used by next/image (for image optimization)
RUN apk add --no-cache libc6-compat
# Install dependencies
RUN npm ci --legacy-peer-deps
COPY . .
RUN apk add --no-cache libc6-compat
# --- STAGE 2: Environments
# Development
FROM base AS development