From 472f527e6a8396094b85a4509d11a4f3c005454f Mon Sep 17 00:00:00 2001 From: Phillip Dykman Date: Thu, 18 Jul 2024 04:57:25 -0700 Subject: [PATCH] Fix several HASS issues (#1065) * Fix hass library finding (libpcap and libturbojpeg) Context: https://github.com/onedr0p/containers/issues/1063 * Fix hass non-root ping (needed by icmp component to function properly after 2024.3.0) --- apps/home-assistant/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/home-assistant/Dockerfile b/apps/home-assistant/Dockerfile index 36525decb..e4ad8145a 100644 --- a/apps/home-assistant/Dockerfile +++ b/apps/home-assistant/Dockerfile @@ -24,6 +24,7 @@ WORKDIR /app RUN \ apk add --no-cache \ bash \ + binutils \ bluez \ bluez-deprecated \ bluez-libs \ @@ -34,9 +35,11 @@ RUN \ eudev-libs \ ffmpeg \ git \ + iputils \ jq \ libcap \ - libturbojpeg \ + libjpeg-turbo-dev \ + libpcap-dev \ libstdc++ \ libxslt \ mariadb-connector-c \