The Opentherm Monitor helps you configure and monitor your opentherm gateway (OTGW).
1M+
FROM python:3.6
RUN apt-get update \
&& apt-get install -y wget python3-tk \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir /app && mkdir /data \
&& /usr/bin/wget http://otgw.tclcode.com/download/otmonitor-x64 -O /app/otmonitor \
&& chmod +x /app/otmonitor
CMD ["/app/otmonitor", "--daemon", "-f", "/data/otmonitor.conf"]