Fix frontend build - use npm install instead of npm ci
Build and push images / build-backend (push) Successful in 5s
Build and push images / build-worker (push) Successful in 5s
Build and push images / build-frontend (push) Failing after 13s

This commit is contained in:
2026-06-06 14:42:28 +01:00
parent e0b09d6d44
commit 8fdf3df013
+1 -1
View File
@@ -2,7 +2,7 @@ FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm install
COPY . .
ARG VITE_API_URL=/api