Files
addons/meshmonitor/Dockerfile
2026-03-22 14:56:30 +01:00

13 lines
203 B
Docker

ARG BUILD_FROM
FROM ghcr.io/yeraze/meshmonitor:latest
# Home Assistant requirements
USER root
RUN apk add --no-cache jq
# Copy local files
COPY run.sh /
RUN chmod a+x /run.sh
ENTRYPOINT [ "/run.sh" ]