Fix: use grunt offline to skip composer in frontend stage

This commit is contained in:
2026-03-15 14:17:15 +00:00
parent d1ab599390
commit 9a1582dd7c
+1 -1
View File
@@ -9,7 +9,7 @@ WORKDIR /build
COPY package.json package-lock.json ./
RUN npm ci --ignore-scripts
COPY . .
RUN npx grunt
RUN npx grunt offline
# Stage 2: Install PHP dependencies
FROM composer:2 AS composer