2021-04-12 21:05:20 +02:00
|
|
|
FROM python:3.9-slim
|
2019-02-11 01:29:55 +01:00
|
|
|
|
|
|
|
EXPOSE 4785
|
|
|
|
|
2020-03-14 16:57:43 +01:00
|
|
|
RUN pip3 install --no-cache-dir markdown matrix-nio
|
2019-02-11 01:29:55 +01:00
|
|
|
|
2019-02-17 12:15:27 +01:00
|
|
|
ADD matrix_webhook.py /
|
2019-02-11 01:29:55 +01:00
|
|
|
|
2019-02-17 12:15:27 +01:00
|
|
|
CMD /matrix_webhook.py
|