From 854c7eb22fdc761562176c06f4812eab280d17f2 Mon Sep 17 00:00:00 2001 From: virtuallyunknown Date: Sun, 9 Aug 2026 15:50:29 +0300 Subject: [PATCH] fix: missing C compiler runtime error Fixes #877 Triton requires a C compiler at runtime for GPU inference. I'm not 100% sure this is the optimal approach, so feel free to reject, though this fix works for me. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index e1340a2f9..f550315d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -81,6 +81,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ ffmpeg \ curl \ gosu \ + build-essential \ && rm -rf /var/lib/apt/lists/* # Copy installed Python packages from builder stage