Fix frontend Dockerfile - use npm install not npm ci
Build and push images / build-backend (push) Successful in 6s
Build and push images / build-worker (push) Successful in 5s
Build and push images / build-frontend (push) Failing after 15s

This commit is contained in:
2026-06-06 18:17:38 +01:00
parent ec5a01d12a
commit b0248fb581
+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