Fix: Use npm ci for backend dependencies
Publish Docker image / build-and-push (push) Successful in 1m45s

This commit is contained in:
2025-07-07 13:28:50 +07:00
parent 0291f9a6c1
commit 18a0399308
+1 -1
View File
@@ -17,7 +17,7 @@ WORKDIR /app
# Copy backend package config and install production dependencies
COPY backend/package.json backend/package-lock.json* ./
RUN npm install --omit=dev
RUN npm ci --omit=dev
# Copy rest of the backend code
COPY backend/ .