Christopher Arndt c78eb82282 Initial commit
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
2023-07-22 16:22:35 +02:00

7 lines
281 B
Docker

FROM python:3.11-alpine
RUN python3 -m pip --no-cache-dir install markdown matrix-nio
ADD matrixchat-notify.py /bin/
ADD matrixchat-notify-config.json /etc/
RUN chmod +x /bin/matrixchat-notify.py
ENTRYPOINT ["/bin/matrixchat-notify.py", "-c", "/etc/matrixchat-notify-config.json"]