From 35169672e19214027081756e4107a823b1abf4b9 Mon Sep 17 00:00:00 2001 From: -Puter <22245429+puterhimself@users.noreply.github.com> Date: Tue, 28 Jul 2026 15:12:57 +0530 Subject: [PATCH] fix: add runner native build toolchain --- deploy/zopu-runtime/runner/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deploy/zopu-runtime/runner/Dockerfile b/deploy/zopu-runtime/runner/Dockerfile index f27bb9f..90cec82 100644 --- a/deploy/zopu-runtime/runner/Dockerfile +++ b/deploy/zopu-runtime/runner/Dockerfile @@ -1,5 +1,9 @@ FROM oven/bun:1.3.14 +RUN apt-get update \ + && apt-get install -y --no-install-recommends g++ make python3 \ + && rm -rf /var/lib/apt/lists/* + WORKDIR /app COPY . .