From eede4c10ba982785fb567b3a96d932e7c1945700 Mon Sep 17 00:00:00 2001 From: -Puter <22245429+puterhimself@users.noreply.github.com> Date: Tue, 28 Jul 2026 15:20:03 +0530 Subject: [PATCH] fix: build runner native modules with Node --- deploy/zopu-runtime/runner/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/deploy/zopu-runtime/runner/Dockerfile b/deploy/zopu-runtime/runner/Dockerfile index 90cec82..7a6eb92 100644 --- a/deploy/zopu-runtime/runner/Dockerfile +++ b/deploy/zopu-runtime/runner/Dockerfile @@ -1,4 +1,8 @@ -FROM oven/bun:1.3.14 +FROM oven/bun:1.3.14 AS bun + +FROM node:24-bookworm-slim + +COPY --from=bun /usr/local/bin/bun /usr/local/bin/bun RUN apt-get update \ && apt-get install -y --no-install-recommends g++ make python3 \