mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
57 lines
1.6 KiB
Docker
57 lines
1.6 KiB
Docker
FROM alpine:3.17
|
|
|
|
RUN apk add --no-cache \
|
|
python3 py3-pip py3-setuptools py3-wheel \
|
|
ca-certificates \
|
|
su-exec \
|
|
yq \
|
|
py3-aiohttp \
|
|
py3-sqlalchemy \
|
|
py3-attrs \
|
|
py3-bcrypt \
|
|
py3-cffi \
|
|
py3-ruamel.yaml \
|
|
py3-jinja2 \
|
|
py3-click \
|
|
py3-packaging \
|
|
py3-markdown \
|
|
py3-alembic \
|
|
# py3-cssselect \
|
|
py3-commonmark \
|
|
py3-pygments \
|
|
py3-tz \
|
|
# py3-tzlocal \
|
|
py3-regex \
|
|
py3-wcwidth \
|
|
# encryption
|
|
py3-cffi \
|
|
py3-olm \
|
|
py3-pycryptodome \
|
|
py3-unpaddedbase64 \
|
|
py3-future \
|
|
# plugin deps
|
|
py3-pillow \
|
|
py3-magic \
|
|
py3-feedparser \
|
|
py3-lxml
|
|
# py3-gitlab
|
|
# py3-semver
|
|
# TODO remove pillow, magic, feedparser, lxml, gitlab and semver when maubot supports installing dependencies
|
|
|
|
COPY requirements.txt /opt/maubot/requirements.txt
|
|
COPY optional-requirements.txt /opt/maubot/optional-requirements.txt
|
|
WORKDIR /opt/maubot
|
|
RUN apk add --virtual .build-deps python3-dev build-base git \
|
|
&& pip3 install -r requirements.txt -r optional-requirements.txt \
|
|
dateparser langdetect python-gitlab pyquery cchardet semver tzlocal cssselect \
|
|
&& apk del .build-deps
|
|
# TODO also remove dateparser, langdetect and pyquery when maubot supports installing dependencies
|
|
|
|
COPY . /opt/maubot
|
|
RUN cp /opt/maubot/maubot/example-config.yaml /opt/maubot
|
|
COPY ./docker/mbc.sh /usr/local/bin/mbc
|
|
ENV UID=1337 GID=1337 XDG_CONFIG_HOME=/data
|
|
VOLUME /data
|
|
|
|
CMD ["/opt/maubot/docker/run.sh"]
|