Update Dockerfile

This commit is contained in:
Yonas Tewabe
2026-06-08 14:16:08 +03:00
committed by GitHub
parent 0f624b34a1
commit 48535e6d04

View File

@@ -1,7 +1,7 @@
FROM node:24-alpine AS deps
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm ci
RUN npm install --legacy-peer-deps
FROM deps AS base
COPY . .