From e8fec7cb07f1b8dbaa41ebc00ec513304b9510e4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 19 Jan 2026 18:06:28 +0000 Subject: [PATCH] Fix Turbopack multi-platform build failure by building AMD64 only Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com> --- .github/workflows/docker-publish.yml | 2 +- next.config.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 3332c64..0c92bd6 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -110,7 +110,7 @@ jobs: uses: docker/build-push-action@v5 with: context: . - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/next.config.js b/next.config.js index b74fb38..3149f49 100644 --- a/next.config.js +++ b/next.config.js @@ -2,7 +2,6 @@ const nextConfig = { output: process.env.BUILD_STATIC ? 'export' : 'standalone', basePath: process.env.NEXT_PUBLIC_BASE_PATH || '', - turbopack: {}, images: { unoptimized: true, },