docker: install rrdtool for runtime python

This commit is contained in:
Yellowcooln
2026-05-26 13:38:47 -04:00
parent 31edaa9c76
commit 9da8317463
+3 -2
View File
@@ -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