matrix-webhook/Dockerfile
Guilhem Saurel bc6171edac [Docker] pycryptodome requires gcc & libc-dev
And the alpine py3-pycryptodome package installs pycryptodomex, which is
not compatible with matrix-nio.
2020-03-08 20:24:50 +01:00

13 lines
243 B
Docker

FROM python:3.8-alpine
EXPOSE 4785
RUN apk update -q \
&& apk add -q --no-cache build-base \
&& pip3 install --no-cache-dir matrix-nio \
&& apk del build-base \
&& rm -rf /var/cache/apk/*
ADD matrix_webhook.py /
CMD /matrix_webhook.py