mirror of
https://github.com/RiDDiX/home-assistant-addons.git
synced 2026-07-14 12:28:09 +08:00
17 lines
393 B
Docker
17 lines
393 B
Docker
FROM ghcr.io/hassio-addons/base-nodejs:0.2.5
|
|
|
|
ENV SUPERVISOR_TOKEN ""
|
|
VOLUME /config
|
|
|
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
|
|
ARG package_version
|
|
LABEL \
|
|
io.hass.version="$package_version" \
|
|
io.hass.type="addon" \
|
|
io.hass.arch="armhf|aarch64|i386|amd64"
|
|
RUN npm install -g home-assistant-matter-hub@$package_version
|
|
|
|
CMD /docker-entrypoint.sh
|