2019-07-28 14:56:43 -04:00
|
|
|
FROM node:12 AS frontend-builder
|
2018-11-10 17:52:28 -05:00
|
|
|
|
|
|
|
COPY ./maubot/management/frontend /frontend
|
|
|
|
RUN cd /frontend && yarn --prod && yarn build
|
|
|
|
|
2020-01-23 07:35:35 -05:00
|
|
|
FROM alpine:3.11
|
2018-10-17 14:17:15 -04:00
|
|
|
|
2020-03-01 06:53:10 -05:00
|
|
|
RUN apk add --no-cache \
|
2020-02-25 17:42:06 -05:00
|
|
|
ca-certificates \
|
|
|
|
su-exec \
|
|
|
|
py3-aiohttp \
|
|
|
|
py3-sqlalchemy \
|
|
|
|
py3-attrs \
|
|
|
|
py3-bcrypt \
|
|
|
|
py3-cffi \
|
|
|
|
py3-psycopg2 \
|
|
|
|
py3-ruamel.yaml \
|
|
|
|
py3-jinja2 \
|
|
|
|
py3-click \
|
|
|
|
py3-packaging \
|
|
|
|
py3-markdown \
|
2020-03-01 06:53:10 -05:00
|
|
|
py3-pillow \
|
|
|
|
py3-magic \
|
|
|
|
py3-feedparser
|
|
|
|
# TODO remove pillow, magic and feedparser when maubot supports installing dependencies
|
|
|
|
|
|
|
|
COPY requirements.txt /opt/maubot/requirements.txt
|
|
|
|
WORKDIR /opt/maubot
|
|
|
|
RUN apk add --virtual .build-deps \
|
|
|
|
python3-dev \
|
|
|
|
build-base \
|
|
|
|
git \
|
2020-02-25 17:42:06 -05:00
|
|
|
&& pip3 install -r requirements.txt \
|
2020-03-01 06:53:10 -05:00
|
|
|
dateparser langdetect python-gitlab \
|
2020-02-25 17:42:06 -05:00
|
|
|
&& apk del .build-deps
|
2020-03-01 06:53:10 -05:00
|
|
|
# TODO also remove dateparser, langdetect and python-gitlab when maubot supports installing dependencies
|
2018-10-17 14:17:15 -04:00
|
|
|
|
2020-02-25 17:42:06 -05:00
|
|
|
COPY . /opt/maubot
|
2020-02-25 18:04:57 -05:00
|
|
|
COPY ./docker/mbc.sh /usr/local/bin/mbc
|
2020-02-25 17:42:06 -05:00
|
|
|
COPY --from=frontend-builder /frontend/build /opt/maubot/frontend
|
2020-02-25 17:44:54 -05:00
|
|
|
ENV UID=1337 GID=1337 XDG_CONFIG_HOME=/data
|
2018-10-17 14:17:15 -04:00
|
|
|
VOLUME /data
|
|
|
|
|
2018-11-04 16:05:39 -05:00
|
|
|
CMD ["/opt/maubot/docker/run.sh"]
|