8 lines
295 B
Docker
8 lines
295 B
Docker
FROM docker.io/alpine:latest
|
|
|
|
RUN apk --no-cache add git py3-pip py3-matrix-nio py3-cryptography py3-pillow &&\
|
|
git clone https://git.it-syndikat.org/IT-Syndikat/its-matrix-bot.git /matrix-bot && \
|
|
cd /matrix-bot && \
|
|
pip install .
|
|
|
|
CMD python3 -m its_matrix_bot -c /its-matrix.toml
|