deploy: install backend build toolchain

This commit is contained in:
-Puter
2026-07-29 06:56:36 +05:30
parent 526ed59776
commit a7e70c9b2a

View File

@@ -2,6 +2,13 @@ FROM oven/bun:1.3.14 AS build
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
g++ \
make \
python3 \
&& rm -rf /var/lib/apt/lists/*
COPY . .
RUN bun install --frozen-lockfile
RUN bun run --filter @code/agents build