# syntax=docker/dockerfile:1.7 # Base = oven/bun:1.3 (Debian) — see apps/web/Dockerfile for the libpg-query # alpine-vs-debian rationale. FROM oven/bun:1.3 AS base RUN apt-get update -qq && \ apt-get install -y --no-install-recommends \ git python3 ca-certificates build-essential nodejs npm && \ rm -rf /var/lib/apt/lists/* && \ update-ca-certificates RUN npm install -g pnpm@9.12.0 FROM base AS build WORKDIR /repo COPY . . RUN --mount=type=cache,id=pnpm,target=/root/.local/share/pnpm/store \ pnpm install --frozen-lockfile FROM oven/bun:1.3 AS runtime WORKDIR /app ENV NODE_ENV=production ENV BRIVEN_RUNTIME_PORT=3003 RUN groupadd -r app && useradd -r -g app app COPY --from=build --chown=app:app /repo /app # The runtime executes each user function inside a locked-down Deno isolate # (BRIVEN_RUNTIME_EXECUTOR=deno — the multi-tenant security boundary). The base # image is Bun, so the `deno` binary is copied in from Deno's official image. # Without it the executor fails with: Executable not found in $PATH: "deno". COPY --from=denoland/deno:bin-2.8.3 /deno /usr/local/bin/deno # Create the bundle dir and chown it BEFORE switching to the non-root user. # compose mounts the `runtime_bundles` named volume at /var/lib/briven/bundles; # a fresh named volume inherits the ownership of this image directory on first # creation, so it must already be app:app or the non-root process gets EACCES # when it mkdir's the per-project bundle subfolder (bundle_fetch_failed). RUN mkdir -p /var/lib/briven/bundles && chown -R app:app /var/lib/briven USER app EXPOSE 3003 WORKDIR /app/apps/runtime CMD ["bun", "run", "src/index.ts"]