From e5bf0b2181f0694d640669e9b1da7a0b6fa94599 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 15 Feb 2020 23:46:56 +0100 Subject: [PATCH] Update Home Assistant CLI to v4.0.1 (#8) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0d50c53..7d717c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ SHELL ["/bin/ash", "-o", "pipefail", "-c"] # Install CLI ARG BUILD_ARCH -ARG CLI_VERSION=4.0.0 +ARG CLI_VERSION=4.0.1 RUN apk add --no-cache curl \ && curl -Lso /usr/bin/ha https://github.com/home-assistant/cli/releases/download/${CLI_VERSION}/ha_${BUILD_ARCH} \ && chmod a+x /usr/bin/ha \