diff --git a/Dockerfile b/Dockerfile index 10c4f3614..8fc107f10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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