12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- FROM alpine:3.13
- ARG TARGETARCH=amd64
- RUN apk add --no-cache \
- python3 py3-pip py3-setuptools py3-wheel \
- py3-virtualenv \
- py3-pillow \
- py3-aiohttp \
- py3-magic \
- py3-ruamel.yaml \
- py3-commonmark \
- # Other dependencies
- py3-cryptography \
- py3-protobuf \
- ca-certificates \
- su-exec \
- # encryption
- olm-dev \
- py3-cffi \
- py3-pycryptodome \
- py3-unpaddedbase64 \
- py3-future \
- bash \
- curl \
- jq \
- yq
- COPY requirements.txt /opt/mautrix-signal/requirements.txt
- COPY optional-requirements.txt /opt/mautrix-signal/optional-requirements.txt
- WORKDIR /opt/mautrix-signal
- RUN apk add --virtual .build-deps python3-dev libffi-dev build-base \
- && pip3 install -r requirements.txt -r optional-requirements.txt \
- && apk del .build-deps
- COPY . /opt/mautrix-signal
- RUN apk add git && pip3 install .[all] && apk del git \
- # This doesn't make the image smaller, but it's needed so that the `version` command works properly
- && cp mautrix_signal/example-config.yaml . && rm -rf mautrix_signal
- VOLUME /data
- CMD ["/opt/mautrix-signal/docker-run.sh"]
|