Add build-essential to Dockerfile dependencies

This commit is contained in:
Bryan Cross
2026-03-30 15:57:22 -05:00
committed by GitHub
parent 4f4d7c4eeb
commit 3a1e489dd6

View File

@@ -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