fix: install Bun in Dockerfile (#284)

Install Bun in Dockerfile so `pnpm build` can run Bun scripts inside Docker.

Thanks @loukotal.
This commit is contained in:
Lukáš Loukota
2026-01-06 15:05:19 +01:00
committed by GitHub
parent dbac51e60f
commit c16510c6ea
2 changed files with 5 additions and 0 deletions

View File

@@ -1,5 +1,9 @@
FROM node:22-bookworm
# Install Bun (required for build scripts)
RUN curl -fsSL https://bun.sh/install | bash
ENV PATH="/root/.bun/bin:${PATH}"
RUN corepack enable
WORKDIR /app