From 80714c544abbe589567b9991e71f3989ed48d9ea Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Fri, 13 Jan 2023 09:56:29 +0100 Subject: [PATCH] Fix nightly intents in nightly builds (#85806) --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index b80e86fb33c9..ec9d10da5a79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,12 @@ RUN \ --no-index \ homeassistant/home_assistant_frontend-*.whl; \ fi \ + && if ls homeassistant/home_assistant_intents*.whl 1> /dev/null 2>&1; then \ + pip3 install \ + --no-cache-dir \ + --no-index \ + homeassistant/home_assistant_intents-*.whl; \ + fi \ && \ LD_PRELOAD="/usr/local/lib/libjemalloc.so.2" \ MALLOC_CONF="background_thread:true,metadata_thp:auto,dirty_decay_ms:20000,muzzy_decay_ms:20000" \