feat: implement native ARM64 Docker builds with CDN support (#791)

* feat: implement native ARM64 Docker builds with CDN support

- Replace QEMU emulation with native ARM64/AMD64 runners (linux-arm64-8-core, linux-x64-8-core)
- Fix manifest creation with proper error handling and image existence checks
- Add CDN video support with getVideoUrl function and Video component
- Update all docs MDX files to use Video component instead of raw video tags
- Update GitHub Actions workflow to use architecture-specific builds
- Remove QEMU setup to eliminate emulation timeout issues
- Maintain multi-arch Docker image support through manifests

* Update .github/workflows/build.yml

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>

---------

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
Vikhyath Mondreti
2025-07-25 15:57:16 -07:00
committed by GitHub
parent 5028930b9f
commit eeb1a340b2
13 changed files with 169 additions and 34 deletions

View File

@@ -25,6 +25,9 @@ RUN bun install --omit dev --ignore-scripts
FROM base AS builder
WORKDIR /app
# Install turbo globally in builder stage
RUN bun install -g turbo
COPY --from=deps /app/node_modules ./node_modules
COPY . .