Fix(ci): Use npm ci for frontend dependencies
Publish Docker image / build-and-push (push) Failing after 57s

This commit is contained in:
2025-07-07 13:14:16 +07:00
parent e394114269
commit 8450b62f33
+1 -1
View File
@@ -4,7 +4,7 @@ WORKDIR /app/frontend
# Copy package config and install dependencies
COPY frontend/package.json frontend/package-lock.json* ./
RUN npm install
RUN npm ci
# Copy rest of the frontend code and build
COPY frontend/ .