Improve dockerfile and update mautrix-python
This commit is contained in:
parent
f36827f9cc
commit
155526bc14
4 changed files with 47 additions and 53 deletions
27
Dockerfile
27
Dockerfile
|
@ -5,13 +5,7 @@ RUN cd /frontend && yarn --prod && yarn build
|
|||
|
||||
FROM alpine:3.11
|
||||
|
||||
COPY requirements.txt /opt/maubot/requirements.txt
|
||||
WORKDIR /opt/maubot
|
||||
RUN apk add --no-cache --virtual .build-deps \
|
||||
python3-dev \
|
||||
build-base \
|
||||
git \
|
||||
&& apk add --no-cache \
|
||||
RUN apk add --no-cache \
|
||||
ca-certificates \
|
||||
su-exec \
|
||||
py3-aiohttp \
|
||||
|
@ -19,19 +13,28 @@ RUN apk add --no-cache --virtual .build-deps \
|
|||
py3-attrs \
|
||||
py3-bcrypt \
|
||||
py3-cffi \
|
||||
py3-pillow \
|
||||
py3-magic \
|
||||
py3-psycopg2 \
|
||||
py3-ruamel.yaml \
|
||||
py3-jinja2 \
|
||||
py3-click \
|
||||
py3-packaging \
|
||||
py3-markdown \
|
||||
&& pip3 install -r requirements.txt \
|
||||
feedparser dateparser langdetect python-gitlab \
|
||||
&& apk del .build-deps
|
||||
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 \
|
||||
&& pip3 install -r requirements.txt \
|
||||
dateparser langdetect python-gitlab \
|
||||
&& apk del .build-deps
|
||||
# TODO also remove dateparser, langdetect and python-gitlab when maubot supports installing dependencies
|
||||
|
||||
COPY . /opt/maubot
|
||||
COPY ./docker/mbc.sh /usr/local/bin/mbc
|
||||
COPY --from=frontend-builder /frontend/build /opt/maubot/frontend
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue