fix: change npm ci to npm install in Dockerfile to prevent deployment issues

This commit is contained in:
mstfyldz
2026-06-11 21:11:12 +03:00
parent b7a494db42
commit 109dc0a66b
+1 -1
View File
@@ -8,7 +8,7 @@ WORKDIR /app
# Install dependencies
COPY package.json package-lock.json* ./
RUN npm ci --legacy-peer-deps
RUN npm install --legacy-peer-deps
# 3. Builder