diff --git a/packages/agents/Dockerfile b/packages/agents/Dockerfile index f669a6d..e91c0c1 100644 --- a/packages/agents/Dockerfile +++ b/packages/agents/Dockerfile @@ -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