-
-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HASS: libturbojpeg switch to libjpeg-turbo #1063
Comments
Already reported here #988. As I mentioned I'm not sure what the fix could be. |
Sorry for the duplicate, I misunderstood the upstream issue. Thanks for the link Did a bit of digging, PyTurboJPEG just doesn't look in the location of the alpine package. Short term fix: add No fix from this repo required |
Small followup - found another alternative while chasing a different lib issue Alpine linux causes problems with the python
Basically, if we add quick diff that fixes missing diff --git a/Dockerfile.onedr0p b/Dockerfile
index 36525de..43d9ca7 100644
--- a/Dockerfile.onedr0p
+++ b/Dockerfile
@@ -24,6 +24,7 @@ WORKDIR /app
RUN \
apk add --no-cache \
bash \
+ binutils \
bluez \
bluez-deprecated \
bluez-libs \
@@ -36,7 +37,8 @@ RUN \
git \
jq \
libcap \
- libturbojpeg \
+ libjpeg-turbo-dev \
+ libpcap-dev \
libstdc++ \
libxslt \
mariadb-connector-c \ |
Sounds good... Feel free to open a PR. |
* Fix hass library finding (libpcap and libturbojpeg) Context: #1063 * Fix hass non-root ping (needed by icmp component to function properly after 2024.3.0)
Source:
home-assistant/docker#313
Currently, (using
libturbojpeg
), HASS can't seem to findlibturbojpeg
when using a camera entity:The text was updated successfully, but these errors were encountered: