From 3a1e489dd6d0bf99f54ef513204065318fd8c985 Mon Sep 17 00:00:00 2001 From: Bryan Cross Date: Mon, 30 Mar 2026 15:57:22 -0500 Subject: [PATCH] Add build-essential to Dockerfile dependencies --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7efb14a6f..3b2862a81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM debian:13.4 # Install system dependencies in one layer, clear APT cache RUN apt-get update && \ apt-get install -y --no-install-recommends \ - nodejs npm python3 python3-pip ripgrep ffmpeg gcc python3-dev libffi-dev && \ + build-essential nodejs npm python3 python3-pip ripgrep ffmpeg gcc python3-dev libffi-dev && \ rm -rf /var/lib/apt/lists/* COPY . /opt/hermes