13 lines
203 B
Docker
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" ]
|