Skip to content

Commit

Permalink
bump node and base container
Browse files Browse the repository at this point in the history
  • Loading branch information
jehy committed Oct 3, 2024
1 parent c8f58f2 commit b0586f2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions dbstats/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.5.10

- Bump base image to 0.3.31 to fix https://github.com/jehy/hass-addons/issues/8
- Bump HA node container version to 0.2.4

## 0.5.8

- Small chart fixes
Expand Down
8 changes: 4 additions & 4 deletions dbstats/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BUILD_FROM=ghcr.io/hassio-addons/base-nodejs:0.2.2
ARG BUILD_FROM=ghcr.io/hassio-addons/base-nodejs:0.2.4
# hadolint ignore=DL3006
FROM ${BUILD_FROM}

Expand All @@ -11,7 +11,7 @@ RUN apk update \
build-base=0.5-r3 \
linux-headers=6.5-r0 \
py3-pip=23.3.1-r0 \
python3-dev=3.11.9-r0 \
python3-dev=3.11.10-r0 \
&& apk add sqlite \
&& apk add --no-cache \
nginx=1.24.0-r16 \
Expand All @@ -20,8 +20,8 @@ RUN apk update \
# Copy root file system
COPY rootfs /

COPY --from=ghcr.io/jehy/hass-dbstats:0.3.20 /usr/src/app /usr/src/app
COPY --from=ghcr.io/jehy/hass-dbstats:0.3.20 /var/www/html /var/www/html
COPY --from=ghcr.io/jehy/hass-dbstats:0.3.21 /usr/src/app /usr/src/app
COPY --from=ghcr.io/jehy/hass-dbstats:0.3.21 /var/www/html /var/www/html
WORKDIR /usr/src/app
RUN npm ci --omit=dev && npm cache clean --force ## need to reinstall deps because they can be binary incompatible

Expand Down
6 changes: 3 additions & 3 deletions dbstats/build.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
build_from:
aarch64: ghcr.io/hassio-addons/base-nodejs:0.2.2
amd64: ghcr.io/hassio-addons/base-nodejs:0.2.2
armv7: ghcr.io/hassio-addons/base-nodejs:0.2.2
aarch64: ghcr.io/hassio-addons/base-nodejs:0.2.4
amd64: ghcr.io/hassio-addons/base-nodejs:0.2.4
armv7: ghcr.io/hassio-addons/base-nodejs:0.2.4
2 changes: 1 addition & 1 deletion dbstats/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: DbStats
version: 0.5.8
version: 0.5.10
slug: dbstats
description: Database stats for Home Assistant
image: ghcr.io/jehy/dbstats-addon-{arch}
Expand Down

0 comments on commit b0586f2

Please sign in to comment.