From 87a4eb6932131aa2a3ce80d8c3fa90581aa45e8d Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 21 Jun 2017 14:51:05 +0200 Subject: [PATCH] Update addon_config.markdown --- source/hassio/addon_config.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/hassio/addon_config.markdown b/source/hassio/addon_config.markdown index 1708ea193bf..bf4af9577a2 100644 --- a/source/hassio/addon_config.markdown +++ b/source/hassio/addon_config.markdown @@ -33,7 +33,7 @@ echo '{ "target": "beer" }' | jq -r ".target" ## {% linkable_title Add-on Docker file %} -All add-ons are based on Alpine Linux 3.5. Hass.io will automatically substitute the right base image based on the machine architecture. Add `tzdata` if you need run in correct timezone. +All add-ons are based on Alpine Linux 3.6. Hass.io will automatically substitute the right base image based on the machine architecture. Add `tzdata` if you need run in correct timezone, but that is already add in our base images. ``` FROM %%BASE_IMAGE%% @@ -41,7 +41,7 @@ FROM %%BASE_IMAGE%% ENV LANG C.UTF-8 # Install requirements for add-on -RUN apk add --no-cache tzdata jq +RUN apk add --no-cache jq # Copy data for add-on COPY run.sh /