From 9da8317463c2f8bdd82926c4ec1a3990fde24fa8 Mon Sep 17 00:00:00 2001 From: Yellowcooln <12516003+yellowcooln@users.noreply.github.com> Date: Tue, 26 May 2026 13:38:47 -0400 Subject: [PATCH] docker: install rrdtool for runtime python --- dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dockerfile b/dockerfile index f0b56d6..a2e1218 100644 --- a/dockerfile +++ b/dockerfile @@ -21,7 +21,8 @@ ENV INSTALL_DIR=/opt/pymc_repeater \ # Install runtime dependencies only RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y \ libffi-dev \ - python3-rrdtool \ + librrd-dev \ + pkg-config \ jq \ wget \ libusb-1.0-0 \ @@ -64,7 +65,7 @@ COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh USER ${USER} # Install package -RUN pip install --no-cache-dir . +RUN pip install --no-cache-dir ".[rrd]" USER root