diff --git a/check_config/CHANGELOG.md b/check_config/CHANGELOG.md index d56e1f4..6a827d2 100644 --- a/check_config/CHANGELOG.md +++ b/check_config/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.2 + +- Update python/alpine to HA 0.96 + ## 2.1 - Adds additional information in log output to avoid confusion diff --git a/check_config/Dockerfile b/check_config/Dockerfile index b69e6ba..0be4d2f 100644 --- a/check_config/Dockerfile +++ b/check_config/Dockerfile @@ -3,9 +3,9 @@ FROM $BUILD_FROM # Add Hass.io wheels repository ARG BUILD_ARCH -ENV WHEELS_LINKS=https://wheels.home-assistant.io/alpine-3.9/${BUILD_ARCH}/ +ENV WHEELS_LINKS=https://wheels.home-assistant.io/alpine-3.10/${BUILD_ARCH}/ # Copy data -COPY run.sh / +COPY data/run.sh / CMD [ "/run.sh" ] diff --git a/check_config/build.json b/check_config/build.json index 8121a49..bd97cda 100644 --- a/check_config/build.json +++ b/check_config/build.json @@ -1,9 +1,9 @@ { "build_from": { - "amd64": "homeassistant/amd64-base-python:3.7", - "i386": "homeassistant/i386-base-python:3.7", - "armhf": "homeassistant/armhf-base-python:3.7", - "armv7": "homeassistant/armv7-base-python:3.7", - "aarch64": "homeassistant/aarch64-base-python:3.7" + "amd64": "homeassistant/amd64-base-python:3.7-alpine3.10", + "i386": "homeassistant/i386-base-python:3.7-alpine3.10", + "armhf": "homeassistant/armhf-base-python:3.7-alpine3.10", + "armv7": "homeassistant/armv7-base-python:3.7-alpine3.10", + "aarch64": "homeassistant/aarch64-base-python:3.7-alpine3.10" } } diff --git a/check_config/config.json b/check_config/config.json index b6f44a7..6da7cbe 100644 --- a/check_config/config.json +++ b/check_config/config.json @@ -1,6 +1,6 @@ { "name": "Check Home Assistant configuration", - "version": "2.1", + "version": "2.2", "slug": "check_config", "description": "Check current Home Assistant configuration against a new version", "url": "https://github.com/home-assistant/hassio-addons/tree/master/check_config", diff --git a/check_config/run.sh b/check_config/data/run.sh similarity index 100% rename from check_config/run.sh rename to check_config/data/run.sh