From 5fd76330b8396f61e5fe9fdc9e05054791e2ff51 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Mon, 5 Nov 2018 00:58:08 +0100 Subject: [PATCH] Fix snips package handling --- snips/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/snips/Dockerfile b/snips/Dockerfile index bea65df..defb045 100644 --- a/snips/Dockerfile +++ b/snips/Dockerfile @@ -9,7 +9,8 @@ COPY customtts.sh /usr/bin RUN chmod a+x /run.sh \ && chmod a+x /usr/bin/customtts.sh \ && apt-get update \ - && (apt-get install -y mpg123 curl snips-asr-injection; exit 0) \ + && apt-get install -y mpg123 curl \ + && apt-get install -y snips-asr-injection || true \ && apt-get clean all \ && curl -L -o /assistant_Hass_de.zip https://s3.amazonaws.com/hassio-addons-data/assistant_Hass_de.zip \ && curl -L -o /assistant_Hass_en.zip https://s3.amazonaws.com/hassio-addons-data/assistant_Hass_en.zip \