From c8c024ec2068256f9bd7132d1e54dc8dd4aa3a3f Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 19 May 2021 10:24:56 +0200 Subject: [PATCH] configurator: Update base image to Alpine 3.13 (#2009) --- configurator/CHANGELOG.md | 4 ++++ configurator/Dockerfile | 2 +- configurator/build.json | 10 +++++----- configurator/config.json | 2 +- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/configurator/CHANGELOG.md b/configurator/CHANGELOG.md index afa44d1..ecc2c8a 100644 --- a/configurator/CHANGELOG.md +++ b/configurator/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 5.3.1 + +- Update base image to Alpine 3.13 + ## 5.3.0 - Ignore input-keyword used in blueprints in yaml-linting diff --git a/configurator/Dockerfile b/configurator/Dockerfile index 0b247cd..235558f 100644 --- a/configurator/Dockerfile +++ b/configurator/Dockerfile @@ -13,7 +13,7 @@ RUN \ && pip3 install \ --no-cache-dir \ --prefer-binary \ - --find-links "https://wheels.home-assistant.io/alpine-3.12/${BUILD_ARCH}/" \ + --find-links "https://wheels.home-assistant.io/alpine-3.13/${BUILD_ARCH}/" \ hass-configurator=="${CONFIGURATOR_VERSION}" \ \ && find /usr/local \ diff --git a/configurator/build.json b/configurator/build.json index 7487578..b96d0b6 100644 --- a/configurator/build.json +++ b/configurator/build.json @@ -1,10 +1,10 @@ { "build_from": { - "aarch64": "homeassistant/aarch64-base:3.12", - "amd64": "homeassistant/amd64-base:3.12", - "armhf": "homeassistant/armhf-base:3.12", - "armv7": "homeassistant/armv7-base:3.12", - "i386": "homeassistant/i386-base:3.12" + "aarch64": "ghcr.io/home-assistant/aarch64-base:3.13", + "amd64": "ghcr.io/home-assistant/amd64-base:3.13", + "armhf": "ghcr.io/home-assistant/armhf-base:3.13", + "armv7": "ghcr.io/home-assistant/armv7-base:3.13", + "i386": "ghcr.io/home-assistant/i386-base:3.13" }, "args": { "CONFIGURATOR_VERSION": "0.4.1" diff --git a/configurator/config.json b/configurator/config.json index 6e43421..fd58a8c 100644 --- a/configurator/config.json +++ b/configurator/config.json @@ -1,6 +1,6 @@ { "name": "File editor", - "version": "5.3.0", + "version": "5.3.1", "slug": "configurator", "description": "Simple browser-based file editor for Home Assistant", "url": "https://github.com/home-assistant/hassio-addons/tree/master/configurator",