Fixed build issues

This commit is contained in:
AmirReza Jamali
2025-09-09 13:32:58 +03:30
parent d73a64fe52
commit 83bd4394fc
18 changed files with 139 additions and 80 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
FROM node:20.16.0 AS builder
FROM node:22.19.0 AS builder
WORKDIR /app
# RUN apk add --no-cache libc6-compat
COPY package*.json ./
RUN npm install
RUN npm i
COPY . .
@@ -14,7 +14,7 @@ RUN npm run build
#---
FROM node:20.16.0 AS runner
FROM node:22.19.0 AS runner
WORKDIR /app