Skip to content

Commit

Permalink
1.0.4 upgrade docker base images to 3.19
Browse files Browse the repository at this point in the history
  • Loading branch information
wendevlin committed Apr 29, 2024
1 parent f25388d commit e24d1c0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions homedocs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<!-- https://developers.home-assistant.io/docs/add-ons/presentation#keeping-a-changelog -->

## 1.0.4

- Upgrade base images to 3.19

## 1.0.3

- Use nodejs-current instead of nodejs in alpine linux
Expand Down
2 changes: 1 addition & 1 deletion homedocs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG BUILD_FROM
FROM $BUILD_FROM

# Install requirements for add-on
RUN apk add --update --no-cache nodejs-current npm bash ca-certificates wget
RUN apk add --update --no-cache nodejs npm bash ca-certificates wget
# Install glibc to run Bun
RUN if [[ $(uname -m) == "aarch64" ]] ; \
then \
Expand Down
10 changes: 5 additions & 5 deletions homedocs/build.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# https://developers.home-assistant.io/docs/add-ons/configuration#add-on-dockerfile
build_from:
aarch64: "ghcr.io/home-assistant/aarch64-base:3.15"
amd64: "ghcr.io/home-assistant/amd64-base:3.15"
# armhf: "ghcr.io/home-assistant/armhf-base:3.15"
# armv7: "ghcr.io/home-assistant/armv7-base:3.15"
i386: "ghcr.io/home-assistant/i386-base:3.15"
aarch64: "ghcr.io/home-assistant/aarch64-base:3.19"
amd64: "ghcr.io/home-assistant/amd64-base:3.19"
# armhf: "ghcr.io/home-assistant/armhf-base:3.19"
# armv7: "ghcr.io/home-assistant/armv7-base:3.19"
i386: "ghcr.io/home-assistant/i386-base:3.19"
labels:
org.opencontainers.image.title: "Homedocs"
org.opencontainers.image.description: "Document stuff with Markdown based on Astro Starlight"
Expand Down
2 changes: 1 addition & 1 deletion homedocs/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Homedocs

Check warning on line 1 in homedocs/config.yaml

View workflow job for this annotation

GitHub Actions / Lint add-on homedocs

'map' contains the 'config' folder, which has been replaced by 'homeassistant_config'. See: https://developers.home-assistant.io/blog/2023/11/06/public-addon-config
description: Document stuff with Markdown based on Astro Starlight
version: "1.0.3"
version: "1.0.4"
slug: homedocs
init: false
url: https://github.com/masterwendu/homeassistant-addons/tree/main/homedocs
Expand Down

0 comments on commit e24d1c0

Please sign in to comment.