mirror of
https://github.com/bsedin/matrix-webhook.git
synced 2026-01-16 08:05:57 +00:00
10 lines
127 B
Docker
10 lines
127 B
Docker
FROM python:3.8-slim
|
|
|
|
EXPOSE 4785
|
|
|
|
RUN pip3 install --no-cache-dir matrix-nio
|
|
|
|
ADD matrix_webhook.py /
|
|
|
|
CMD /matrix_webhook.py
|