2023-07-22 16:22:35 +02:00
|
|
|
FROM python:3.11-alpine
|
2023-07-24 01:07:32 +02:00
|
|
|
RUN python3 -m pip --no-cache-dir install bleach jinja2 markdown matrix-nio
|
2023-07-22 16:22:35 +02:00
|
|
|
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"]
|