Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion apps/web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# syntax=docker/dockerfile:1

# ── Build stage ───────────────────────────────────────────────────────────────
FROM oven/bun:1-alpine AS builder
# Runs on the build platform (not the target platform): the output is
# architecture-independent static assets, so cross-arch runs would otherwise
# execute bun under QEMU emulation for no benefit, which has been known to
# corrupt native-binary tarball extraction (e.g. @biomejs/cli-linux-arm64).
FROM --platform=$BUILDPLATFORM oven/bun:1-alpine AS builder

WORKDIR /build

Expand Down
Loading