Files
addons/meshmonitor/Dockerfile
2026-03-22 15:47:55 +01:00

11 lines
208 B
Docker

FROM ghcr.io/yeraze/meshmonitor:latest
USER root
RUN apk add --no-cache jq curl bash nginx
COPY nginx.conf /etc/nginx/http.d/default.conf
COPY run.sh /run.sh
RUN chmod a+x /run.sh
ENTRYPOINT [ "/run.sh" ]