chore(docker): Add Dockerfile for deployment

This commit is contained in:
sepehr 2026-01-11 23:10:54 +01:00
parent 208dfdb7fa
commit 3854a3e302

View File

@ -8,7 +8,7 @@ WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json package-lock.json* ./
RUN npm ci
RUN npm ci --legacy-peer-deps
# Rebuild the source code only when needed
FROM base AS builder