pref: build frontend only in amd64 for Dockfile

This commit is contained in:
Lykin
2026-03-01 01:46:07 +08:00
parent b74693a569
commit 6b28cb6eed
+1 -1
View File
@@ -1,7 +1,7 @@
# ============================================================
# Stage 1: Build frontend
# ============================================================
FROM node:22-alpine AS frontend-builder
FROM --platform=linux/amd64 node:22-alpine AS frontend-builder
WORKDIR /app/frontend
COPY frontend/package.json frontend/package-lock.json ./