Add pyquery to docker image
This commit is contained in:
parent
3836ff59bf
commit
512a680678
2 changed files with 10 additions and 8 deletions
|
@ -22,8 +22,9 @@ RUN apk add --no-cache \
|
||||||
py3-pillow \
|
py3-pillow \
|
||||||
py3-magic \
|
py3-magic \
|
||||||
py3-feedparser \
|
py3-feedparser \
|
||||||
py3-dateutil
|
py3-dateutil \
|
||||||
# TODO remove pillow, magic and feedparser when maubot supports installing dependencies
|
py3-lxml
|
||||||
|
# TODO remove pillow, magic, feedparser and lxml when maubot supports installing dependencies
|
||||||
|
|
||||||
COPY requirements.txt /opt/maubot/requirements.txt
|
COPY requirements.txt /opt/maubot/requirements.txt
|
||||||
WORKDIR /opt/maubot
|
WORKDIR /opt/maubot
|
||||||
|
@ -32,9 +33,9 @@ RUN apk add --virtual .build-deps \
|
||||||
build-base \
|
build-base \
|
||||||
git \
|
git \
|
||||||
&& pip3 install -r requirements.txt \
|
&& pip3 install -r requirements.txt \
|
||||||
dateparser langdetect python-gitlab \
|
dateparser langdetect python-gitlab pyquery \
|
||||||
&& apk del .build-deps
|
&& apk del .build-deps
|
||||||
# TODO also remove dateparser, langdetect and python-gitlab when maubot supports installing dependencies
|
# TODO also remove dateparser, langdetect, python-gitlab and pyquery when maubot supports installing dependencies
|
||||||
|
|
||||||
COPY . /opt/maubot
|
COPY . /opt/maubot
|
||||||
COPY ./docker/mbc.sh /usr/local/bin/mbc
|
COPY ./docker/mbc.sh /usr/local/bin/mbc
|
||||||
|
|
|
@ -16,8 +16,9 @@ RUN apk add --no-cache \
|
||||||
py3-markdown \
|
py3-markdown \
|
||||||
py3-pillow \
|
py3-pillow \
|
||||||
py3-magic \
|
py3-magic \
|
||||||
py3-feedparser
|
py3-feedparser \
|
||||||
# TODO remove pillow, magic and feedparser when maubot supports installing dependencies
|
py3-lxml
|
||||||
|
# TODO remove pillow, magic, feedparser and lxml when maubot supports installing dependencies
|
||||||
|
|
||||||
COPY requirements.txt /opt/maubot/requirements.txt
|
COPY requirements.txt /opt/maubot/requirements.txt
|
||||||
WORKDIR /opt/maubot
|
WORKDIR /opt/maubot
|
||||||
|
@ -26,9 +27,9 @@ RUN apk add --virtual .build-deps \
|
||||||
build-base \
|
build-base \
|
||||||
git \
|
git \
|
||||||
&& pip3 install -r requirements.txt \
|
&& pip3 install -r requirements.txt \
|
||||||
dateparser langdetect python-gitlab \
|
dateparser langdetect python-gitlab pyquery \
|
||||||
&& apk del .build-deps
|
&& apk del .build-deps
|
||||||
# TODO also remove dateparser, langdetect and python-gitlab when maubot supports installing dependencies
|
# TODO also remove dateparser, langdetect, python-gitlab and pyquery when maubot supports installing dependencies
|
||||||
|
|
||||||
COPY . /opt/maubot
|
COPY . /opt/maubot
|
||||||
COPY ./docker/mbc.sh /usr/local/bin/mbc
|
COPY ./docker/mbc.sh /usr/local/bin/mbc
|
||||||
|
|
Loading…
Reference in a new issue