From 0a155a267e951f65e7e1ca08562254c44ccec500 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 10 Aug 2019 23:33:57 +0200 Subject: [PATCH] Upgrades Hassio CLI to v2.3.0 (#1) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e6a8991..195d734 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ SHELL ["/bin/ash", "-o", "pipefail", "-c"] # Install CLI ARG BUILD_ARCH -ARG HASSIO_CLI_VERSION=2.2.0 +ARG HASSIO_CLI_VERSION=2.3.0 RUN apk add --no-cache curl \ && curl -Lso /usr/bin/hassio https://github.com/home-assistant/hassio-cli/releases/download/${HASSIO_CLI_VERSION}/hassio_${BUILD_ARCH} \ && chmod a+x /usr/bin/hassio \