Add missing line to CI dockerfile

This commit is contained in:
Tulir Asokan 2021-12-13 15:03:56 +02:00
parent 33bc777bfd
commit df2f2a896a

View File

@ -46,7 +46,8 @@ RUN apk add --virtual .build-deps python3-dev build-base git \
&& sed -Ei 's/psycopg2-binary.+//' optional-requirements.txt \
&& pip3 install -r requirements.txt -r optional-requirements.txt \
dateparser langdetect python-gitlab pyquery cchardet semver tzlocal cssselect \
&& apk del .build-deps
&& apk del .build-deps \
&& cp maubot/example-config.yaml . && rm -rf maubot
# TODO also remove dateparser, langdetect and pyquery when maubot supports installing dependencies
COPY . /opt/maubot